Tensor.Pow 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.
Surcharges
Pow<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>) |
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié. |
Pow<T>(ReadOnlyTensorSpan<T>, T) |
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié. |
Pow<T>(T, ReadOnlyTensorSpan<T>) |
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié. |
Pow<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié. |
Pow<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>) |
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié. |
Pow<T>(T, ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié. |
Pow<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)
- Source:
- TensorExtensions.cs
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié.
public:
generic <typename T>
where T : System::Numerics::IPowerFunctions<T> static System::Numerics::Tensors::Tensor<T> ^ Pow(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> Pow<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IPowerFunctions<T>;
static member Pow : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IPowerFunctions<'T>)> (requires 'T :> System.Numerics.IPowerFunctions<'T>)
Public Function Pow(Of T As IPowerFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Paramètres de type
- T
Paramètres
Entrée ReadOnlyTensorSpan<T>.
Deuxième ReadOnlyTensorSpan<T> d’entrée
Retours
S’applique à
Pow<T>(ReadOnlyTensorSpan<T>, T)
- Source:
- TensorExtensions.cs
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié.
public:
generic <typename T>
where T : System::Numerics::IPowerFunctions<T> static System::Numerics::Tensors::Tensor<T> ^ Pow(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static System.Numerics.Tensors.Tensor<T> Pow<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.IPowerFunctions<T>;
static member Pow : ReadOnlyTensorSpan * 'T -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IPowerFunctions<'T>)> (requires 'T :> System.Numerics.IPowerFunctions<'T>)
Public Function Pow(Of T As IPowerFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T) As Tensor(Of T)
Paramètres de type
- T
Paramètres
Entrée ReadOnlyTensorSpan<T>.
- y
- T
Deuxième entrée
Retours
S’applique à
Pow<T>(T, ReadOnlyTensorSpan<T>)
- Source:
- TensorExtensions.cs
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié.
public:
generic <typename T>
where T : System::Numerics::IPowerFunctions<T> static System::Numerics::Tensors::Tensor<T> ^ Pow(T x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> Pow<T> (T x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IPowerFunctions<T>;
static member Pow : 'T * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IPowerFunctions<'T>)> (requires 'T :> System.Numerics.IPowerFunctions<'T>)
Public Function Pow(Of T As IPowerFunctions(Of T)) (x As T, ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Paramètres de type
- T
Paramètres
- x
- T
Entrée ReadOnlyTensorSpan<T>.
Deuxième entrée
Retours
S’applique à
Pow<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Source:
- TensorExtensions.cs
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié.
public:
generic <typename T>
where T : System::Numerics::IPowerFunctions<T> static System::Numerics::Tensors::TensorSpan<T> ^ Pow(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Pow<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IPowerFunctions<T>;
static member Pow : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IPowerFunctions<'T>)
Public Function Pow(Of T As IPowerFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Paramètres de type
- T
Paramètres
Entrée ReadOnlyTensorSpan<T>.
Deuxième ReadOnlyTensorSpan<T> d’entrée
- destination
- TensorSpan<T>
Retours
S’applique à
Pow<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)
- Source:
- TensorExtensions.cs
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié.
public:
generic <typename T>
where T : System::Numerics::IPowerFunctions<T> static System::Numerics::Tensors::TensorSpan<T> ^ Pow(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Pow<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IPowerFunctions<T>;
static member Pow : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IPowerFunctions<'T>)
Public Function Pow(Of T As IPowerFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Paramètres de type
- T
Paramètres
Entrée ReadOnlyTensorSpan<T>.
- y
- T
Deuxième ReadOnlyTensorSpan<T> d’entrée
- destination
- TensorSpan<T>
Retours
S’applique à
Pow<T>(T, ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Source:
- TensorExtensions.cs
Calcule la puissance par élément d’un nombre dans un tensor spécifié élevé à un nombre dans un autre tenseur spécifié.
public:
generic <typename T>
where T : System::Numerics::IPowerFunctions<T> static System::Numerics::Tensors::TensorSpan<T> ^ Pow(T x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Pow<T> (T x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IPowerFunctions<T>;
static member Pow : 'T * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IPowerFunctions<'T>)
Public Function Pow(Of T As IPowerFunctions(Of T)) (x As T, ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Paramètres de type
- T
Paramètres
- x
- T
Entrée ReadOnlyTensorSpan<T>.
Deuxième ReadOnlyTensorSpan<T> d’entrée
- destination
- TensorSpan<T>