Complex Operators |
The Complex type exposes the following members.
Name | Description | |
---|---|---|
Addition(Double, Complex) |
Returns the sum of a double and a Complex, x+y.
| |
Addition(Complex, Complex) |
Returns the sum of two Complex objects, x+y.
| |
Addition(Complex, Double) |
Returns the sum of a Complex and a double, x+y.
| |
Division(Double, Complex) |
Returns the result of a double divided by a Complex
object, x/y.
| |
Division(Complex, Complex) |
Returns the result of a Complex object divided by a
Complex object, x/y.
| |
Division(Complex, Double) |
Returns the result of a Complex object divided by a
double, x/y.
| |
Equality(Double, Complex) |
Returns true if x and y are equal.
| |
Equality(Complex, Complex) |
Returns true if x and y are equal.
| |
Equality(Complex, Double) |
Returns true if x and y are equal.
| |
Inequality(Double, Complex) |
Returns true if x and y are not equal.
| |
Inequality(Complex, Complex) |
Returns true if x and y are not equal.
| |
Inequality(Complex, Double) |
Returns true if x and y are not equal.
| |
Multiply(Double, Complex) |
Returns the product of a double and a Complex object,
x * y.
| |
Multiply(Complex, Complex) |
Returns the product of two Complex objects, x * y.
| |
Multiply(Complex, Double) |
Returns the product of a Complex object and a double,
x * y.
| |
Subtraction(Double, Complex) |
Returns the difference of a double and a Complex
object, x-y.
| |
Subtraction(Complex, Complex) |
Returns the difference of two Complex objects, x-y.
| |
Subtraction(Complex, Double) |
Returns the difference of a Complex object and a
double, x-y.
| |
UnaryNegation |
Returns the negative of a Complex object, -x.
|