Vector128.Divide 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Divide<T>(Vector128<T>, Vector128<T>) |
將兩個向量除以計算其商數。 |
Divide<T>(Vector128<T>, T) |
將向量除以純量來計算每個元素的商數。 |
Divide<T>(Vector128<T>, Vector128<T>)
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
將兩個向量除以計算其商數。
public:
generic <typename T>
where T : value class static System::Runtime::Intrinsics::Vector128<T> Divide(System::Runtime::Intrinsics::Vector128<T> left, System::Runtime::Intrinsics::Vector128<T> right);
public:
generic <typename T>
static System::Runtime::Intrinsics::Vector128<T> Divide(System::Runtime::Intrinsics::Vector128<T> left, System::Runtime::Intrinsics::Vector128<T> right);
public static System.Runtime.Intrinsics.Vector128<T> Divide<T> (System.Runtime.Intrinsics.Vector128<T> left, System.Runtime.Intrinsics.Vector128<T> right) where T : struct;
public static System.Runtime.Intrinsics.Vector128<T> Divide<T> (System.Runtime.Intrinsics.Vector128<T> left, System.Runtime.Intrinsics.Vector128<T> right);
static member Divide : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> -> System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> (requires 'T : struct)
static member Divide : System.Runtime.Intrinsics.Vector128<'T> * System.Runtime.Intrinsics.Vector128<'T> -> System.Runtime.Intrinsics.Vector128<'T>
Public Function Divide(Of T As Structure) (left As Vector128(Of T), right As Vector128(Of T)) As Vector128(Of T)
Public Function Divide(Of T) (left As Vector128(Of T), right As Vector128(Of T)) As Vector128(Of T)
類型參數
- T
向量中專案的型別。
參數
- left
- Vector128<T>
將除以 right
的向量。
- right
- Vector128<T>
將除 left
的向量。
傳回
的商 left
數除以 right
。
例外狀況
不支援 和 right
(T
) 的類型 left
。
適用於
Divide<T>(Vector128<T>, T)
- 來源:
- Vector128.cs
- 來源:
- Vector128.cs
將向量除以純量來計算每個元素的商數。
public:
generic <typename T>
static System::Runtime::Intrinsics::Vector128<T> Divide(System::Runtime::Intrinsics::Vector128<T> left, T right);
public static System.Runtime.Intrinsics.Vector128<T> Divide<T> (System.Runtime.Intrinsics.Vector128<T> left, T right);
static member Divide : System.Runtime.Intrinsics.Vector128<'T> * 'T -> System.Runtime.Intrinsics.Vector128<'T>
Public Function Divide(Of T) (left As Vector128(Of T), right As T) As Vector128(Of T)
類型參數
- T
向量中專案的型別。
參數
- left
- Vector128<T>
將除以 right
的向量。
- right
- T
將除 left
的純量。
傳回
的商 left
數除以 right
。