Click or drag to resize

ComplexMathAbs2 Method

The squared modulus (length^2) of the complex number

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

Parameters

c  Complex
The complex argument.

Return Value

Double
The squared modulus (length^2) of the complex number.
Remarks
Only for completeness, you can also use
C#
c.GetModulusSquared()
See Also