|
| static Complex | Acos (Complex c) |
| | Returns the angle whose cosine is a complex number More...
|
| |
| static Complex | Acosh (Complex c) |
| | Returns the angle whose hyperbolic cosine is a complex number More...
|
| |
| static Complex | Asin (Complex c) |
| | Returns the angle whose sine is a complex number More...
|
| |
| static Complex | Asinh (Complex c) |
| | Returns the angle whose hyperbolic sine is a complex number More...
|
| |
| static Complex | Atan (Complex c) |
| | Returns the tangent of a complex number More...
|
| |
| static Complex | Atanh (Complex c) |
| | Returns the angle whose hyperbolic tangent is a complex number More...
|
| |
| static Complex | Conjugate (Complex c) |
| | Returns the complex conjugate of a complex number More...
|
| |
| static Complex | Cos (Complex c) |
| | Returns the cosine of a complex number More...
|
| |
| static Complex | Cosh (Complex c) |
| | Returns the hyperbolic cosine of a complex number More...
|
| |
| static Complex | Ln (Complex c) |
| | Returns the natural (base e) logarithm of a complex number More...
|
| |
| static Complex | Log (Complex c, double a) |
| | Returns the logarithm of a complex number on the specified real base More...
|
| |
| static Complex | Log (Complex c, Complex a) |
| | Returns the logarithm of a complex number More...
|
| |
| static Complex | Log10 (Complex c) |
| | Returns the base 10 logarithm of a complex number More...
|
| |
| static implicit | operator Complex (double value) |
| | Implicit operator to assign the specified real value with zero imaginary part More...
|
| |
| static bool | operator!= (Complex A, Complex B) |
| | Inequality check of two complex numbers More...
|
| |
| static Complex | operator* (Complex A, Complex B) |
| | Multiplies two complex numbers More...
|
| |
| static Complex | operator+ (Complex A, Complex B) |
| | Adds two complex numbers More...
|
| |
| static Complex | operator- (Complex A, Complex B) |
| | Subtracts a complex number from another complex number More...
|
| |
| static Complex | operator- (Complex A) |
| | Negates (opposite) a complex number More...
|
| |
| static Complex | operator/ (Complex A, Complex B) |
| | Divides a complex number by another complex number More...
|
| |
| static bool | operator== (Complex A, Complex B) |
| | Equality check of two complex numbers More...
|
| |
| static Complex | PolarToRec (double magnitude, double phase) |
| | Polar-to-rectangular conversion More...
|
| |
| static Complex | Pow (Complex c, double a) |
| | Returns the complex number raised to the specified power More...
|
| |
| static Complex | Reciprocal (Complex c) |
| | Returns the inverse of a complex number More...
|
| |
| static Complex | Round (Complex c, int decimals) |
| | Rounds a complex number to the specified number of fractional digits More...
|
| |
| static Complex | Sin (Complex c) |
| | Returns the sine of a complex number More...
|
| |
| static Complex | Sinh (Complex c) |
| | Returns the hyperbolic sine of a complex number More...
|
| |
| static Complex | Sqrt (Complex c) |
| | Returns the square root of a complex number More...
|
| |
| static Complex | Tan (Complex c) |
| | Returns the tangent of a complex number More...
|
| |
| static Complex | Tanh (Complex c) |
| | Returns the hyperbolic tangent of a complex number More...
|
| |
Provides a complex data type and common complex calculations.