Tensor.SubtractionAssignment Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| SubtractionAssignment(TScalar) |
Performs in-place element-wise subtraction between a tensor and scalar. |
| SubtractionAssignment(ReadOnlyTensorSpan<TScalar>) |
Performs in-place element-wise subtraction between two tensors. |
SubtractionAssignment(TScalar)
- Source:
- Tensor.cs
Performs in-place element-wise subtraction between a tensor and scalar.
public:
void op_SubtractionAssignment(TScalar other);
public void op_SubtractionAssignment(TScalar other);
member this.( -= ) : 'TScalar -> unit
Public op_SubtractionAssignment (other As TScalar)
Parameters
- other
- TScalar
The scalar to subtract from the tensor being operated on.
Applies to
SubtractionAssignment(ReadOnlyTensorSpan<TScalar>)
- Source:
- Tensor.cs
Performs in-place element-wise subtraction between two tensors.
public:
void op_SubtractionAssignment(System::Numerics::Tensors::ReadOnlyTensorSpan<TScalar> % other);
public void op_SubtractionAssignment(in System.Numerics.Tensors.ReadOnlyTensorSpan<TScalar> other);
member this.( -= ) : ReadOnlyTensorSpan -> unit
Public op_SubtractionAssignment (ByRef other As ReadOnlyTensorSpan(Of TScalar))
Parameters
- other
- ReadOnlyTensorSpan<TScalar>
The tensor to subtract from the tensor being operated on.