Imaginary<T>.UnaryNegation Operator

Negates an imaginary number.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
public static Imaginary<T> operator -(
	Imaginary<T> z
)

Parameters

z  Imaginary<T>
An imaginary number.

Return Value

Imaginary<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(Imaginary<T>) method instead.

See Also