Partager via


Tensor.Subtract Méthode

Définition

Surcharges

Subtract<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)

Soustrait chaque élément de x de y et retourne une nouvelle TensorSpan<T> avec le résultat.

Subtract<T>(T, ReadOnlyTensorSpan<T>)

Soustrait chaque élément de y de x et retourne une nouvelle Tensor<T> avec le résultat.

Subtract<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)

Soustrait y de chaque élément de x et retourne une nouvelle TensorSpan<T> avec le résultat.

Subtract<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

Soustrait chaque élément de x de y et retourne une nouvelle Tensor<T> avec le résultat.

Subtract<T>(ReadOnlyTensorSpan<T>, T)

Soustrait y de chaque élément de x et retourne une nouvelle Tensor<T> avec le résultat.

Subtract<T>(T, ReadOnlyTensorSpan<T>, TensorSpan<T>)

Soustrait chaque élément de y de x et retourne une nouvelle TensorSpan<T> avec le résultat.

Subtract<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)

Source:
TensorExtensions.cs

Soustrait chaque élément de x de y et retourne une nouvelle TensorSpan<T> avec le résultat.

public:
generic <typename T>
 where T : System::Numerics::ISubtractionOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ Subtract(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> Subtract<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.ISubtractionOperators<T,T,T>;
static member Subtract : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.ISubtractionOperators<'T, 'T, 'T>)
Public Function Subtract(Of T As ISubtractionOperators(Of T, T, 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

x
ReadOnlyTensorSpan<T>

ReadOnlyTensorSpan<T> des valeurs à soustraire.

y
ReadOnlyTensorSpan<T>

ReadOnlyTensorSpan<T>de valeurs à soustraire.

destination
TensorSpan<T>

Retours

S’applique à

Subtract<T>(T, ReadOnlyTensorSpan<T>)

Source:
TensorExtensions.cs

Soustrait chaque élément de y de x et retourne une nouvelle Tensor<T> avec le résultat.

public:
generic <typename T>
 where T : System::Numerics::ISubtractionOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ Subtract(T x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> Subtract<T> (T x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.ISubtractionOperators<T,T,T>;
static member Subtract : 'T * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.ISubtractionOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.ISubtractionOperators<'T, 'T, 'T>)
Public Function Subtract(Of T As ISubtractionOperators(Of T, T, T)) (x As T, ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)

Paramètres de type

T

Paramètres

x
T

Les T à soustraire.

y
ReadOnlyTensorSpan<T>

ReadOnlyTensorSpan<T> de valeurs à soustraire.

Retours

S’applique à

Subtract<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)

Source:
TensorExtensions.cs

Soustrait y de chaque élément de x et retourne une nouvelle TensorSpan<T> avec le résultat.

public:
generic <typename T>
 where T : System::Numerics::ISubtractionOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ Subtract(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Subtract<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.ISubtractionOperators<T,T,T>;
static member Subtract : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.ISubtractionOperators<'T, 'T, 'T>)
Public Function Subtract(Of T As ISubtractionOperators(Of T, T, 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

x
ReadOnlyTensorSpan<T>

La ReadOnlyTensorSpan<T> avec des valeurs à soustraire.

y
T

Valeur T à soustraire.

destination
TensorSpan<T>

Retours

S’applique à

Subtract<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

Source:
TensorExtensions.cs

Soustrait chaque élément de x de y et retourne une nouvelle Tensor<T> avec le résultat.

public:
generic <typename T>
 where T : System::Numerics::ISubtractionOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ Subtract(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> Subtract<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.ISubtractionOperators<T,T,T>;
static member Subtract : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.ISubtractionOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.ISubtractionOperators<'T, 'T, 'T>)
Public Function Subtract(Of T As ISubtractionOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)

Paramètres de type

T

Paramètres

x
ReadOnlyTensorSpan<T>

La ReadOnlyTensorSpan<T> avec des valeurs à soustraire.

y
ReadOnlyTensorSpan<T>

La ReadOnlyTensorSpan<T> avec des valeurs à soustraire.

Retours

S’applique à

Subtract<T>(ReadOnlyTensorSpan<T>, T)

Source:
TensorExtensions.cs

Soustrait y de chaque élément de x et retourne une nouvelle Tensor<T> avec le résultat.

public:
generic <typename T>
 where T : System::Numerics::ISubtractionOperators<T, T, T> static System::Numerics::Tensors::Tensor<T> ^ Subtract(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static System.Numerics.Tensors.Tensor<T> Subtract<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.ISubtractionOperators<T,T,T>;
static member Subtract : ReadOnlyTensorSpan * 'T -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.ISubtractionOperators<'T, 'T, 'T>)> (requires 'T :> System.Numerics.ISubtractionOperators<'T, 'T, 'T>)
Public Function Subtract(Of T As ISubtractionOperators(Of T, T, T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T) As Tensor(Of T)

Paramètres de type

T

Paramètres

y
T

La T à soustraire.

Retours

S’applique à

Subtract<T>(T, ReadOnlyTensorSpan<T>, TensorSpan<T>)

Source:
TensorExtensions.cs

Soustrait chaque élément de y de x et retourne une nouvelle TensorSpan<T> avec le résultat.

public:
generic <typename T>
 where T : System::Numerics::ISubtractionOperators<T, T, T> static System::Numerics::Tensors::TensorSpan<T> ^ Subtract(T x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Subtract<T> (T x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.ISubtractionOperators<T,T,T>;
static member Subtract : 'T * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.ISubtractionOperators<'T, 'T, 'T>)
Public Function Subtract(Of T As ISubtractionOperators(Of T, T, 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

Valeur T à soustraire.

y
ReadOnlyTensorSpan<T>

Valeurs ReadOnlyTensorSpan<T> à soustraire.

destination
TensorSpan<T>

Retours

S’applique à