Tensor.MultiplicationAssignment 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 |
|---|---|
| MultiplicationAssignment(TScalar) |
Performs in-place element-wise multiplication between a tensor and scalar. |
| MultiplicationAssignment(ReadOnlyTensorSpan<TScalar>) |
Performs in-place element-wise multiplication between two tensors. |
MultiplicationAssignment(TScalar)
- Source:
- Tensor.cs
Performs in-place element-wise multiplication between a tensor and scalar.
public:
void op_MultiplicationAssignment(TScalar other);
public void op_MultiplicationAssignment(TScalar other);
member this.op_MultiplicationAssignment : 'TScalar -> unit
Public op_MultiplicationAssignment (other As TScalar)
Parameters
- other
- TScalar
The scalar used to multiply the tensor being operated on.
Applies to
MultiplicationAssignment(ReadOnlyTensorSpan<TScalar>)
- Source:
- Tensor.cs
Performs in-place element-wise multiplication between two tensors.
public:
void op_MultiplicationAssignment(System::Numerics::Tensors::ReadOnlyTensorSpan<TScalar> % other);
public void op_MultiplicationAssignment(in System.Numerics.Tensors.ReadOnlyTensorSpan<TScalar> other);
member this.op_MultiplicationAssignment : ReadOnlyTensorSpan -> unit
Public op_MultiplicationAssignment (ByRef other As ReadOnlyTensorSpan(Of TScalar))
Parameters
- other
- ReadOnlyTensorSpan<TScalar>
The tensor used to multiply the tensor being operated on.