Node:Scientific, Next:, Previous:Arithmetic, Up:Numbers



21.2.12 Scientific Functions

The following procedures accept any kind of number as arguments, including complex numbers.

sqrt z Scheme Procedure
Return the square root of z.

expt z1 z2 Scheme Procedure
Return z1 raised to the power of z2.

sin z Scheme Procedure
Return the sine of z.

cos z Scheme Procedure
Return the cosine of z.

tan z Scheme Procedure
Return the tangent of z.

asin z Scheme Procedure
Return the arcsine of z.

acos z Scheme Procedure
Return the arccosine of z.

atan z Scheme Procedure
Return the arctangent of z.

exp z Scheme Procedure
Return e to the power of z, where e is the base of natural logarithms (2.71828...).

log z Scheme Procedure
Return the natural logarithm of z.

log10 z Scheme Procedure
Return the base 10 logarithm of z.

sinh z Scheme Procedure
Return the hyperbolic sine of z.

cosh z Scheme Procedure
Return the hyperbolic cosine of z.

tanh z Scheme Procedure
Return the hyperbolic tangent of z.

asinh z Scheme Procedure
Return the hyperbolic arcsine of z.

acosh z Scheme Procedure
Return the hyperbolic arccosine of z.

atanh z Scheme Procedure
Return the hyperbolic arctangent of z.