Complex<T>.Negate Method

Negates a complex number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Complex<T> Negate(
	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

This method is equivalent to the UnaryNegation(Complex<T>). It is provided for languages that do not support operator overloading.

See Also