Complex<T>.Negate Method
Negates a complex number.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
A complex number that has its real and imaginary part negated.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public static Complex<T> Negate(
Complex<T> z
)
Parameters
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.