Tensor.RootN 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
RootN<T>(ReadOnlyTensorSpan<T>, Int32) |
Calcule la n-ième racine d’élément des valeurs dans le tensoriel spécifié. |
RootN<T>(ReadOnlyTensorSpan<T>, Int32, TensorSpan<T>) |
Calcule la n-ième racine d’élément des valeurs dans le tensoriel spécifié. |
RootN<T>(ReadOnlyTensorSpan<T>, Int32)
- Source:
- TensorExtensions.cs
- Source:
- TensorExtensions.cs
Calcule la n-ième racine d’élément des valeurs dans le tensoriel spécifié.
public:
generic <typename T>
where T : System::Numerics::IRootFunctions<T> static System::Numerics::Tensors::Tensor<T> ^ RootN(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, int n);
public static System.Numerics.Tensors.Tensor<T> RootN<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, int n) where T : System.Numerics.IRootFunctions<T>;
static member RootN : ReadOnlyTensorSpan * int -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IRootFunctions<'T>)> (requires 'T :> System.Numerics.IRootFunctions<'T>)
Public Function RootN(Of T As IRootFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), n As Integer) As Tensor(Of T)
Paramètres de type
- T
Paramètres
Le capteur, représenté sous la forme d’une étendue.
- n
- Int32
Degré de calcul de la racine, représenté en tant que scalaire.
Retours
S’applique à
RootN<T>(ReadOnlyTensorSpan<T>, Int32, TensorSpan<T>)
- Source:
- TensorExtensions.cs
- Source:
- TensorExtensions.cs
Calcule la n-ième racine d’élément des valeurs dans le tensoriel spécifié.
public:
generic <typename T>
where T : System::Numerics::IRootFunctions<T> static System::Numerics::Tensors::TensorSpan<T> ^ RootN(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, int n, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> RootN<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, int n, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IRootFunctions<T>;
static member RootN : ReadOnlyTensorSpan * int * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IRootFunctions<'T>)
Public Function RootN(Of T As IRootFunctions(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), n As Integer, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Paramètres de type
- T
Paramètres
Le capteur, représenté sous la forme d’une étendue.
- n
- Int32
Degré de calcul de la racine, représenté en tant que scalaire.
- destination
- TensorSpan<T>
Le tensoriel de destination, représenté sous la forme d’une étendue.