Increments the real part of a complex number
by one.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Complex<T> Increment(
Complex<T> z
)
Public Shared Function Increment (
z As Complex(Of T)
) As Complex(Of T)
public:
static Complex<T> Increment(
Complex<T> z
)
static member Increment :
z : Complex<'T> -> Complex<'T>
Parameters
- z
- Type: Extreme.MathematicsComplexT
A complex number.
Return Value
Type:
ComplexTThe complex number with its real part
incremented by one.
Reference