NFloat.Hypot(NFloat, NFloat) Method

Definition

Computes the hypotenuse given two values representing the lengths of the shorter sides in a right-angled triangle.

public:
 static System::Runtime::InteropServices::NFloat Hypot(System::Runtime::InteropServices::NFloat x, System::Runtime::InteropServices::NFloat y) = System::Numerics::IRootFunctions<System::Runtime::InteropServices::NFloat>::Hypot;
public static System.Runtime.InteropServices.NFloat Hypot (System.Runtime.InteropServices.NFloat x, System.Runtime.InteropServices.NFloat y);
static member Hypot : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Hypot (x As NFloat, y As NFloat) As NFloat

Parameters

x
NFloat

The value to square and add to y.

y
NFloat

The value to square and add to x.

Returns

The square root of x-squared plus y-squared.

Implements

Applies to