Vector128.Hypot Metod

Definition

Överlagringar

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

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

Hypot(Vector128<Double>, Vector128<Double>)

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

Hypot(Vector128<Single>, Vector128<Single>)

Källa:
Vector128.cs
Källa:
Vector128.cs
Källa:
Vector128.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::Vector128<float> Hypot(System::Runtime::Intrinsics::Vector128<float> x, System::Runtime::Intrinsics::Vector128<float> y);
public static System.Runtime.Intrinsics.Vector128<float> Hypot(System.Runtime.Intrinsics.Vector128<float> x, System.Runtime.Intrinsics.Vector128<float> y);
static member Hypot : System.Runtime.Intrinsics.Vector128<single> * System.Runtime.Intrinsics.Vector128<single> -> System.Runtime.Intrinsics.Vector128<single>
Public Function Hypot (x As Vector128(Of Single), y As Vector128(Of Single)) As Vector128(Of Single)

Parametrar

x
Vector128<Single>

Vektorn till kvadrat och lägg till i y.

y
Vector128<Single>

Vektorn till kvadrat och lägg till i x.

Returer

Kvadratroten av x-squared plus y-squared.

Gäller för

Hypot(Vector128<Double>, Vector128<Double>)

Källa:
Vector128.cs
Källa:
Vector128.cs
Källa:
Vector128.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::Vector128<double> Hypot(System::Runtime::Intrinsics::Vector128<double> x, System::Runtime::Intrinsics::Vector128<double> y);
public static System.Runtime.Intrinsics.Vector128<double> Hypot(System.Runtime.Intrinsics.Vector128<double> x, System.Runtime.Intrinsics.Vector128<double> y);
static member Hypot : System.Runtime.Intrinsics.Vector128<double> * System.Runtime.Intrinsics.Vector128<double> -> System.Runtime.Intrinsics.Vector128<double>
Public Function Hypot (x As Vector128(Of Double), y As Vector128(Of Double)) As Vector128(Of Double)

Parametrar

x
Vector128<Double>

Vektorn till kvadrat och lägg till i y.

y
Vector128<Double>

Vektorn till kvadrat och lägg till i x.

Returer

Kvadratroten av x-squared plus y-squared.

Gäller för