Sponsored links: Algebra eBooks
 

Help Index

A

B

C

D

E

F

G

H

I

J

K

L

M

N

O

P

Q

R

S

T

U

V

W

X

Y

Z

The Maxima on-line user's manual

Algebra Calculator

Search:

Ratprint

-- Option variable: ratprint Default value: true

When ratprint is true, a message informing the user of the conversion of floating point numbers to rational numbers is displayed.

kill(all);
f(x):=sin(x^2);
a:0;
 b:2;
n:5;
h:(b-a)/n;
ratprint: false;
fpprintprec: 6;
x:makelist(a+k*h,k,0,5);
y:makelist(f(x[k]),k,1,n+1);

(%o1)                                true
(%i2) 

Related Examples