Vector512.Dot<T>(Vector512<T>, Vector512<T>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
計算兩個向量的點乘積。
public:
generic <typename T>
static T Dot(System::Runtime::Intrinsics::Vector512<T> left, System::Runtime::Intrinsics::Vector512<T> right);
public static T Dot<T> (System.Runtime.Intrinsics.Vector512<T> left, System.Runtime.Intrinsics.Vector512<T> right);
static member Dot : System.Runtime.Intrinsics.Vector512<'T> * System.Runtime.Intrinsics.Vector512<'T> -> 'T
Public Function Dot(Of T) (left As Vector512(Of T), right As Vector512(Of T)) As T
類型參數
- T
向量中專案的型別。
參數
- left
- Vector512<T>
將以虛線表示 right
的向量。
- right
- Vector512<T>
將以虛線表示 left
的向量。
傳回
T
left
與 right
的內積。
例外狀況
不支援和 right
(T
) 的類型left
。