Click or drag to resize

ComplexMathAbs Method

The absolute value (modulus) of complex number.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double Abs(
	Complex c
)

Parameters

c  Complex
The complex argument.

Return Value

Double
The absolute value (also called modulus, length, euclidean norm) of the complex number.
Remarks
Only for completeness, you can also use
C#
c.GetModulus()
See Also