Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
/* Maxima has machine floating point (usually double precision IEEE 754), and
|
||||
arbitrary length "big floats" */
|
||||
|
||||
/* Here are ordinary floats */
|
||||
3.14159
|
||||
2.718e0
|
||||
1.2345d10
|
||||
1.2345e10
|
||||
1.2345f10
|
||||
|
||||
/* And big floats (always with a "b" for the exponent) */
|
||||
3.14159b0
|
||||
2.718b0
|
||||
1.2345b10
|
||||
|
||||
/* Before computing with big float, one must set precision to some value (default is 16 decimal digits) */
|
||||
fpprec: 40$
|
||||
|
||||
bfloat(%pi);
|
||||
3.141592653589793238462643383279502884197b0
|
||||
Loading…
Add table
Add a link
Reference in a new issue