Complex<T>.Unary Negation Operator
Negates a complex number.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A complex number that has its real and imaginary part negated.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static Complex<T> operator -(
Complex<T> z
)
Parameters
Return Value
Complex<T>A complex number that has its real and imaginary part negated.
Remarks
If you are using a language that does not support operator overloading, use the staticNegate(Complex<T>) method instead.