Tensor.Negate 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
Negate<T>(ReadOnlyTensorSpan<T>) |
Calcule la négation par élément de chaque nombre dans le tensoriel spécifié. |
Negate<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>) |
Calcule la négation par élément de chaque nombre dans le tensoriel spécifié. |
Negate<T>(ReadOnlyTensorSpan<T>)
- Source:
- TensorExtensions.cs
Calcule la négation par élément de chaque nombre dans le tensoriel spécifié.
public:
generic <typename T>
where T : System::Numerics::IUnaryNegationOperators<T, T> static System::Numerics::Tensors::Tensor<T> ^ Negate(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static System.Numerics.Tensors.Tensor<T> Negate<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.IUnaryNegationOperators<T,T>;
static member Negate : ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IUnaryNegationOperators<'T, 'T>)> (requires 'T :> System.Numerics.IUnaryNegationOperators<'T, 'T>)
Public Function Negate(Of T As IUnaryNegationOperators(Of T, T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)
Paramètres de type
- T
Paramètres
Retours
S’applique à
Negate<T>(ReadOnlyTensorSpan<T>, TensorSpan<T>)
- Source:
- TensorExtensions.cs
Calcule la négation par élément de chaque nombre dans le tensoriel spécifié.
public:
generic <typename T>
where T : System::Numerics::IUnaryNegationOperators<T, T> static System::Numerics::Tensors::TensorSpan<T> ^ Negate(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Negate<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.IUnaryNegationOperators<T,T>;
static member Negate : ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.IUnaryNegationOperators<'T, 'T>)
Public Function Negate(Of T As IUnaryNegationOperators(Of T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)
Paramètres de type
- T
Paramètres
- destination
- TensorSpan<T>
Retours
S’applique à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.