Click or drag to resize
Complex Operators

The Complex type exposes the following members.

Operators
  NameDescription
Public operatorStatic memberAddition(Double, Complex)
Returns the sum of a double and a Complex, x+y.
Public operatorStatic memberAddition(Complex, Complex)
Returns the sum of two Complex objects, x+y.
Public operatorStatic memberAddition(Complex, Double)
Returns the sum of a Complex and a double, x+y.
Public operatorStatic memberDivision(Double, Complex)
Returns the result of a double divided by a Complex object, x/y.
Public operatorStatic memberDivision(Complex, Complex)
Returns the result of a Complex object divided by a Complex object, x/y.
Public operatorStatic memberDivision(Complex, Double)
Returns the result of a Complex object divided by a double, x/y.
Public operatorStatic memberEquality(Double, Complex)
Returns true if x and y are equal.
Public operatorStatic memberEquality(Complex, Complex)
Returns true if x and y are equal.
Public operatorStatic memberEquality(Complex, Double)
Returns true if x and y are equal.
Public operatorStatic memberInequality(Double, Complex)
Returns true if x and y are not equal.
Public operatorStatic memberInequality(Complex, Complex)
Returns true if x and y are not equal.
Public operatorStatic memberInequality(Complex, Double)
Returns true if x and y are not equal.
Public operatorStatic memberMultiply(Double, Complex)
Returns the product of a double and a Complex object, x * y.
Public operatorStatic memberMultiply(Complex, Complex)
Returns the product of two Complex objects, x * y.
Public operatorStatic memberMultiply(Complex, Double)
Returns the product of a Complex object and a double, x * y.
Public operatorStatic memberSubtraction(Double, Complex)
Returns the difference of a double and a Complex object, x-y.
Public operatorStatic memberSubtraction(Complex, Complex)
Returns the difference of two Complex objects, x-y.
Public operatorStatic memberSubtraction(Complex, Double)
Returns the difference of a Complex object and a double, x-y.
Public operatorStatic memberUnaryNegation
Returns the negative of a Complex object, -x.
Top
See Also