Mathematical functions for complex numbers.
complex | Mathematical functions for complex numbers. |
Types | |
Complex | Complex number type. |
Functions | |
make | Make a complex number from real and imaginary parts. |
acos | Inverse cosine (arc cos). |
acosh | Inverse hyperbolic cosine (arc cosh). |
abs | Absolute value. |
add | Complex addition. |
arg | Complex argument. |
asin | Inverse sine (arc sin). |
asinh | Inverse hyperbolic sine (arc sinh). |
atan | Inverse tangent (arc tan). |
atanh | Inverse hyperbolic tangent (arc tanh). |
cos | Cosine. |
cosh | Hyperbolic cosine. |
div | Complex division. |
exp | Complex exponentiation. |
exp | Complex exponentiation (base 10). |
inv | Complex inverse. |
log | Complex logarithm. |
log10 | Complex logarithm (base 10). |
mul | Complex multiplication. |
pow | Complex power. |
sin | Sine. |
sinh | Hyperbolic sine. |
sqrt | Square root. |
sub | Complex subtraction. |
square | Complex square (a^2). |
tan | Tangent. |
tanh | Hyperbolic tangent. |
Make a complex number from real and imaginary parts.
FUNCTION make( re: Number, im: Number ): Complex
Inverse cosine (arc cos).
FUNCTION acos( a: Complex ): Complex
Inverse hyperbolic cosine (arc cosh).
FUNCTION acosh( a: Complex ): Complex
Absolute value.
FUNCTION abs( a: Complex ): Number
Complex addition.
FUNCTION add( a, b: Complex ): Complex
Complex argument.
FUNCTION arg( a: Complex ): Number
Inverse sine (arc sin).
FUNCTION asin( a: Complex ): Complex
Inverse hyperbolic sine (arc sinh).
FUNCTION asinh( a: Complex ): Complex
Inverse tangent (arc tan).
FUNCTION atan( a: Complex ): Complex
Inverse hyperbolic tangent (arc tanh).
FUNCTION atanh( a: Complex ): Complex
Cosine.
FUNCTION cos( a: Complex ): Complex
Hyperbolic cosine.
FUNCTION cosh( a: Complex ): Complex
Complex division.
FUNCTION div( a, b: Complex ): Complex
Complex exponentiation.
FUNCTION exp( a: Complex ): Complex
Complex inverse.
FUNCTION inv( a: Complex ): Complex
Complex logarithm.
FUNCTION log( a: Complex ): Complex
Complex logarithm (base 10).
FUNCTION log10( a: Complex ): Complex
Complex multiplication.
FUNCTION mul( a, b: Complex ): Complex
Complex power.
FUNCTION pow( a, b: Complex ): Complex
Sine.
FUNCTION sin( a: Complex ): Complex
Hyperbolic sine.
FUNCTION sinh( a: Complex ): Complex
Square root.
FUNCTION sqrt( a: Complex ): Complex
Complex subtraction.
FUNCTION sub( a, b: Complex ): Complex
Complex square (a^2).
FUNCTION square( a: Complex ): Complex
Tangent.
FUNCTION tan( a: Complex ): Complex
Hyperbolic tangent.
FUNCTION tanh( a: Complex ): Complex