Vector512.Divide メソッド

定義

オーバーロード

Divide<T>(Vector512<T>, Vector512<T>)

2 つのベクトルを除算して商を計算します。

Divide<T>(Vector512<T>, T)

ベクターをスカラーで除算して、要素ごとの商を計算します。

Divide<T>(Vector512<T>, Vector512<T>)

ソース:
Vector512.cs
ソース:
Vector512.cs

2 つのベクトルを除算して商を計算します。

public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector512<T> Divide(System::Runtime::Intrinsics::Vector512<T> left, System::Runtime::Intrinsics::Vector512<T> right);
public static System.Runtime.Intrinsics.Vector512<T> Divide<T> (System.Runtime.Intrinsics.Vector512<T> left, System.Runtime.Intrinsics.Vector512<T> right);
static member Divide : System.Runtime.Intrinsics.Vector512<'T> * System.Runtime.Intrinsics.Vector512<'T> -> System.Runtime.Intrinsics.Vector512<'T>
Public Function Divide(Of T) (left As Vector512(Of T), right As Vector512(Of T)) As Vector512(Of T)

型パラメーター

T

ベクター内の要素の型。

パラメーター

left
Vector512<T>

rightで除算されるベクトル。

right
Vector512<T>

leftを除算するベクトル。

戻り値

left の商を rightで割った値です。

例外

leftright (T) の種類はサポートされていません。

適用対象

Divide<T>(Vector512<T>, T)

ソース:
Vector512.cs
ソース:
Vector512.cs

ベクターをスカラーで除算して、要素ごとの商を計算します。

public:
generic <typename T>
 static System::Runtime::Intrinsics::Vector512<T> Divide(System::Runtime::Intrinsics::Vector512<T> left, T right);
public static System.Runtime.Intrinsics.Vector512<T> Divide<T> (System.Runtime.Intrinsics.Vector512<T> left, T right);
static member Divide : System.Runtime.Intrinsics.Vector512<'T> * 'T -> System.Runtime.Intrinsics.Vector512<'T>
Public Function Divide(Of T) (left As Vector512(Of T), right As T) As Vector512(Of T)

型パラメーター

T

ベクター内の要素の型。

パラメーター

left
Vector512<T>

rightで除算されるベクトル。

right
T

leftを除算するスカラー。

戻り値

left の商を rightで割った値です。

適用対象