Complex<T>.UnaryNegation Operator

Negates a complex number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Complex<T> operator -(
	Complex<T> z
)

Parameters

z  Complex<T>
A complex number.

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.

See Also