Click or drag to resize

SpecialFunctionsHypotenuse Method

Overload List
 NameDescription
Public methodStatic memberHypotenuse(Complex, Complex) Numerically stable hypotenuse of a right angle triangle, i.e.
C#
(a,b) -> sqrt(a^2 + b^2)
Public methodStatic memberHypotenuse(Complex32, Complex32) Numerically stable hypotenuse of a right angle triangle, i.e.
C#
(a,b) -> sqrt(a^2 + b^2)
Public methodStatic memberHypotenuse(Double, Double) Numerically stable hypotenuse of a right angle triangle, i.e.
C#
(a,b) -> sqrt(a^2 + b^2)
Public methodStatic memberHypotenuse(Single, Single) Numerically stable hypotenuse of a right angle triangle, i.e.
C#
(a,b) -> sqrt(a^2 + b^2)
Top
See Also