Complex<T>.Negate Method

Negates a complex number.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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