Tensor Back End.Subtract In Place Method
Definition
Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.1
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.1
Overload List
Subtract | Subtracts a scalar from a scalar in-place. |
Subtract | Subtracts one tensor from another in place. |
SubtractInPlace<T>(Tensor<T>, T, Tensor<Boolean>)
Subtracts a scalar from a scalar in-place.
public virtual Tensor<T> SubtractInPlace<T>(
Tensor<T> left,
T right,
Tensor<bool>? mask = null
)
Parameters
- left Tensor<T>
- A tensor that serves as the left operand.
- right T
- A scalar that serves as the right operand.
- mask Tensor<Boolean> (Optional)
- Optional. A boolean tensor that specifies whether the operation should be performed at the location. If omitted, the operation is performed everywhere.
Type Parameters
- T
Return Value
Tensor<T>This tensor with each element replaced with the difference of the element and right.
SubtractInPlace<T>(Tensor<T>, Tensor<T>, Tensor<Boolean>)
Subtracts one tensor from another in place.
public virtual Tensor<T> SubtractInPlace<T>(
Tensor<T> left,
Tensor<T> right,
Tensor<bool>? mask = null
)
Parameters
- left Tensor<T>
- A tensor that serves as the left operand.
- right Tensor<T>
- A tensor that serves as the right operand.
- mask Tensor<Boolean> (Optional)
- Optional. A boolean tensor that specifies whether the operation should be performed at the location. If omitted, the operation is performed everywhere.
Type Parameters
- T
- The type of the elements of the tensors.
Return Value
Tensor<T>This tensor with the elements replaced with the difference of the element and the corresponding element of right.
Exceptions
Argument | left is null. -or- right is null. |
Dimension | The dimensions of left and right are not compatible. |