SpecialFunctionsHypotenuse(Complex32, Complex32) Method |
Numerically stable hypotenuse of a right angle triangle, i.e. (a,b) -> sqrt(a^2 + b^2)
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static Complex32 Hypotenuse(
Complex32 a,
Complex32 b
)
Parameters
- a Complex32
- The length of side a of the triangle.
- b Complex32
- The length of side b of the triangle.
Return Value
Complex32Returns
sqrt(a2 + b2) without underflow/overflow.
See Also