 | DoubleComplex Operators and Type Conversions |
The DoubleComplex type exposes the following members.
Operators | Name | Description |
---|
  | Addition(Double, DoubleComplex) |
Returns the sum of a real and a complex number.
|
  | Addition(DoubleComplex, DoubleComplex) |
Returns the sum of two complex numbers.
|
  | Addition(DoubleComplex, Double) |
Returns the sum of a complex number and a real number.
|
  | Division(Double, DoubleComplex) |
Returns the quotient of dividing a real number by a complex number.
|
  | Division(DoubleComplex, DoubleComplex) |
Returns the quotient of dividing one complex number by another.
|
  | Division(DoubleComplex, Double) |
Returns the quotient of dividing a complex number by a real number.
|
  | Equality(DoubleComplex, DoubleComplex) |
Tests for equality of two complex numbers.
|
  | (Double to DoubleComplex) |
Implicitly converts a double-precision floating point number into a DoubleComplex
instance. The imaginary part is set to 0.0.
|
  | (FloatComplex to DoubleComplex) |
Implicitly converts a FloatComplex instance into a DoubleComplex instance.
|
  | Inequality(DoubleComplex, DoubleComplex) |
Tests for inequality of two complex numbers.
|
  | Multiply(Double, DoubleComplex) |
Returns the product of a real and a complex number.
|
  | Multiply(DoubleComplex, DoubleComplex) |
Returns the product of two complex numbers.
|
  | Multiply(DoubleComplex, Double) |
Returns the product of a complex number and a real.
|
  | Subtraction(Double, DoubleComplex) |
Returns the difference of a real number and a complex number.
|
  | Subtraction(DoubleComplex, DoubleComplex) |
Returns the difference of two complex numbers.
|
  | Subtraction(DoubleComplex, Double) |
Returns the difference of a complex number and a real number.
|
  | UnaryNegation(DoubleComplex) |
Returns the negation of a complex number.
|
Top
See Also