Complex<T>.Decrement Operator

Decrements the real part of a complex number by one.

Definition

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

Parameters

z  Complex<T>
A complex number.

Return Value

Complex<T>
The complex number with its real part decremented by one.

Implements

IDecrementOperators<TSelf>.Decrement(TSelf)

See Also