Complex Operators and Type Conversions |
The Complex type exposes the following members.
Operators | Name | Description |
---|
| Addition(Complex, Complex) |
Calculates the sum of the two numbers
|
| Addition(Complex, Double) |
Calculates the sum of the two numbers
|
| Addition(Double, Complex) |
Calculates the sum of the two numbers
|
| Division(Complex, Complex) |
Calculates the quotient of the two numbers
|
| Division(Complex, Double) |
Calculates the quotient of the two numbers
|
| Division(Double, Complex) |
Calculates the quotient of the two numbers
|
| Exponent(Complex, Complex) |
Calculates the first number to the power of the second number
|
| Exponent(Complex, Double) |
Calculates the first number to the power of the second number
|
| Exponent(Double, Complex) |
Calculates the first number to the power of the second number
|
| (Double to Complex) |
Converts the given double value into a complex value by setting the Real part to the value and imaginary part to zero
|
| Multiply(Complex, Complex) |
Calculates the product of the two numbers
|
| Multiply(Complex, Double) |
Calculates the product of the two numbers
|
| Multiply(Double, Complex) |
Calculates the product of the two numbers
|
| Subtraction(Complex, Complex) |
Calculates the difference of the two numbers
|
| Subtraction(Complex, Double) |
Calculates the difference of the two numbers
|
| Subtraction(Double, Complex) |
Calculates the difference of the two numbers
|
TopSee Also