10 lines
399 B
Forth
10 lines
399 B
Forth
e ! Not available. Can be calculated EXP(1.0)
|
|
pi ! Not available. Can be calculated 4.0*ATAN(1.0)
|
|
SQRT(x) ! square root
|
|
LOG(x) ! natural logarithm
|
|
LOG10(x) ! logarithm to base 10
|
|
EXP(x) ! exponential
|
|
ABS(x) ! absolute value
|
|
FLOOR(x) ! floor - Fortran 90 or later only
|
|
CEILING(x) ! ceiling - Fortran 90 or later only
|
|
x**y ! x raised to the y power
|