Tensor.Subtract Method

Definition

Overloads

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

Performs element-wise subtraction between two tensors.

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

Performs element-wise subtraction between a tensor and scalar.

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

Performs element-wise subtraction between a tensor and scalar.

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

Performs element-wise subtraction between two tensors.

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

Performs element-wise subtraction between a tensor and scalar.

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

Performs element-wise subtraction between a tensor and scalar.

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

Source:
Tensor.op_Subtraction.cs
Source:
TensorExtensions.cs

Performs element-wise subtraction between two tensors.

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)

Type Parameters

T

The type of the elements in the tensor.

Parameters

x
ReadOnlyTensorSpan<T>

The tensor from which to subtract y.

y
ReadOnlyTensorSpan<T>

The tensor to subtract from x.

Returns

A new tensor containing the result of x - y.

Exceptions

The shapes of x and y are not compatible.

Applies to

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

Source:
Tensor.op_Subtraction.cs
Source:
TensorExtensions.cs

Performs element-wise subtraction between a tensor and scalar.

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)

Type Parameters

T

The type of the elements in the tensor.

Parameters

x
ReadOnlyTensorSpan<T>

The tensor from which to subtract y.

y
T

The scalar to subtract from x.

Returns

A new tensor containing the result of x - y.

Applies to

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

Source:
Tensor.op_Subtraction.cs
Source:
TensorExtensions.cs

Performs element-wise subtraction between a tensor and scalar.

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)

Type Parameters

T

The type of the elements in the tensor.

Parameters

x
T

The scalar from which to subtract y.

y
ReadOnlyTensorSpan<T>

The tensor to subtract from x.

Returns

A new tensor containing the result of x - y.

Applies to

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

Source:
Tensor.op_Subtraction.cs
Source:
TensorExtensions.cs

Performs element-wise subtraction between two tensors.

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)

Type Parameters

T

The type of the elements in the tensor.

Parameters

x
ReadOnlyTensorSpan<T>

The tensor from which to subtract y.

y
ReadOnlyTensorSpan<T>

The tensor to subtract from x.

destination
TensorSpan<T>

The destination where the result of x - y is written.

Returns

A reference to destination.

Exceptions

The shapes of x, y, and destination are not compatible.

Applies to

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

Source:
Tensor.op_Subtraction.cs
Source:
TensorExtensions.cs

Performs element-wise subtraction between a tensor and scalar.

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)

Type Parameters

T

The type of the elements in the tensor.

Parameters

x
ReadOnlyTensorSpan<T>

The tensor from which to subtract y.

y
T

The scalar to subtract from x.

destination
TensorSpan<T>

The destination where the result of x - y is written.

Returns

A reference to destination.

Exceptions

The shapes of x and destination are not compatible.

Applies to

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

Source:
Tensor.op_Subtraction.cs
Source:
TensorExtensions.cs

Performs element-wise subtraction between a tensor and scalar.

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)

Type Parameters

T

The type of the elements in the tensor.

Parameters

x
T

The scalar from which to subtract y.

y
ReadOnlyTensorSpan<T>

The tensor to subtract from x.

destination
TensorSpan<T>

The destination where the result of x - y is written.

Returns

A reference to destination.

Exceptions

The shapes of y and destination are not compatible.

Applies to