Vector64.Dot<T>(Vector64<T>, Vector64<T>) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Calcule le produit point de deux vecteurs.
public:
generic <typename T>
where T : value class static T Dot(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
public:
generic <typename T>
static T Dot(System::Runtime::Intrinsics::Vector64<T> left, System::Runtime::Intrinsics::Vector64<T> right);
public static T Dot<T> (System.Runtime.Intrinsics.Vector64<T> left, System.Runtime.Intrinsics.Vector64<T> right) where T : struct;
public static T Dot<T> (System.Runtime.Intrinsics.Vector64<T> left, System.Runtime.Intrinsics.Vector64<T> right);
static member Dot : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> -> 'T (requires 'T : struct)
static member Dot : System.Runtime.Intrinsics.Vector64<'T> * System.Runtime.Intrinsics.Vector64<'T> -> 'T
Public Function Dot(Of T As Structure) (left As Vector64(Of T), right As Vector64(Of T)) As T
Public Function Dot(Of T) (left As Vector64(Of T), right As Vector64(Of T)) As T
Paramètres de type
- T
Type des éléments dans le vecteur.
Paramètres
- left
- Vector64<T>
Vecteur qui sera pointé rightde .
- right
- Vector64<T>
Vecteur qui sera pointé leftde .
Retours
Produit scalaire de left et right.
Exceptions
Le type de left et right (T) n’est pas pris en charge.