Vector64.Hypot Metod

Definition

Överlagringar

Name Description
Hypot(Vector64<Single>, Vector64<Single>)

Beräknar hypotenuse givet två vektorer som representerar längden på de kortare sidorna i en högervinklad triangel.

Hypot(Vector64<Double>, Vector64<Double>)

Beräknar hypotenuse givet två vektorer som representerar längden på de kortare sidorna i en högervinklad triangel.

Hypot(Vector64<Single>, Vector64<Single>)

Källa:
Vector64.cs
Källa:
Vector64.cs
Källa:
Vector64.cs

Beräknar hypotenuse givet två vektorer som representerar längden på de kortare sidorna i en högervinklad triangel.

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

Parametrar

x
Vector64<Single>

Vektorn till kvadrat och lägg till i y.

y
Vector64<Single>

Vektorn till kvadrat och lägg till i x.

Returer

Kvadratroten av x-squared plus y-squared.

Gäller för

Hypot(Vector64<Double>, Vector64<Double>)

Källa:
Vector64.cs
Källa:
Vector64.cs
Källa:
Vector64.cs

Beräknar hypotenuse givet två vektorer som representerar längden på de kortare sidorna i en högervinklad triangel.

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

Parametrar

x
Vector64<Double>

Vektorn till kvadrat och lägg till i y.

y
Vector64<Double>

Vektorn till kvadrat och lägg till i x.

Returer

Kvadratroten av x-squared plus y-squared.

Gäller för