Tensor.DivisionAssignment 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 |
|---|---|
| DivisionAssignment(TScalar) |
Performs in-place element-wise division between a tensor and scalar. |
| DivisionAssignment(ReadOnlyTensorSpan<TScalar>) |
Performs in-place element-wise division between two tensors. |
DivisionAssignment(TScalar)
- Source:
- Tensor.cs
Performs in-place element-wise division between a tensor and scalar.
public:
void op_DivisionAssignment(TScalar other);
public void op_DivisionAssignment(TScalar other);
member this.( /= ) : 'TScalar -> unit
Public op_DivisionAssignment (other As TScalar)
Parameters
- other
- TScalar
The scalar divisor.
Applies to
DivisionAssignment(ReadOnlyTensorSpan<TScalar>)
- Source:
- Tensor.cs
Performs in-place element-wise division between two tensors.
public:
void op_DivisionAssignment(System::Numerics::Tensors::ReadOnlyTensorSpan<TScalar> % other);
public void op_DivisionAssignment(in System.Numerics.Tensors.ReadOnlyTensorSpan<TScalar> other);
member this.( /= ) : ReadOnlyTensorSpan -> unit
Public op_DivisionAssignment (ByRef other As ReadOnlyTensorSpan(Of TScalar))
Parameters
- other
- ReadOnlyTensorSpan<TScalar>
The tensor divisor.