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