Vector.Hypot メソッド

定義

オーバーロード

名前 説明
Hypot(Vector<Single>, Vector<Single>)

直角三角形の短辺の長さを表す 2 つのベクトルを指定して、低血圧を計算します。

Hypot(Vector<Double>, Vector<Double>)

直角三角形の短辺の長さを表す 2 つのベクトルを指定して、低血圧を計算します。

Hypot(Vector<Single>, Vector<Single>)

ソース:
Vector.cs
ソース:
Vector.cs
ソース:
Vector.cs

直角三角形の短辺の長さを表す 2 つのベクトルを指定して、低血圧を計算します。

public:
 static System::Numerics::Vector<float> Hypot(System::Numerics::Vector<float> x, System::Numerics::Vector<float> y);
public static System.Numerics.Vector<float> Hypot(System.Numerics.Vector<float> x, System.Numerics.Vector<float> y);
static member Hypot : System.Numerics.Vector<single> * System.Numerics.Vector<single> -> System.Numerics.Vector<single>
Public Function Hypot (x As Vector(Of Single), y As Vector(Of Single)) As Vector(Of Single)

パラメーター

x
Vector<Single>

ベクトルを四角形にし、 yに追加します。

y
Vector<Single>

ベクトルを四角形にし、 xに追加します。

返品

x 2 乗プラス y 2 乗の平方根。

適用対象

Hypot(Vector<Double>, Vector<Double>)

ソース:
Vector.cs
ソース:
Vector.cs
ソース:
Vector.cs

直角三角形の短辺の長さを表す 2 つのベクトルを指定して、低血圧を計算します。

public:
 static System::Numerics::Vector<double> Hypot(System::Numerics::Vector<double> x, System::Numerics::Vector<double> y);
public static System.Numerics.Vector<double> Hypot(System.Numerics.Vector<double> x, System.Numerics.Vector<double> y);
static member Hypot : System.Numerics.Vector<double> * System.Numerics.Vector<double> -> System.Numerics.Vector<double>
Public Function Hypot (x As Vector(Of Double), y As Vector(Of Double)) As Vector(Of Double)

パラメーター

x
Vector<Double>

ベクトルを四角形にし、 yに追加します。

y
Vector<Double>

ベクトルを四角形にし、 xに追加します。

返品

x 2 乗プラス y 2 乗の平方根。

適用対象