Tensor<T>.DivisionAssignment Operator

Definition

Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 10.0.0

Overload List

DivisionAssignment(T) Divides a tensor by a scalar in-place.
DivisionAssignment(Tensor<T>) Divides one tensor by another in place.
DivisionAssignment(Tensor<T>, T) Divides a matrix by a constant in place.

DivisionAssignment(T) Operator

Divides a tensor by a scalar in-place.
C#
C# does not support this operator.

Parameters

right  T
 

Return Value

This tensor with each element replaced with the quotient of the element and other.

DivisionAssignment(Tensor<T>) Operator

Divides one tensor by another in place.
C#
C# does not support this operator.

Parameters

right  Tensor<T>
 

Return Value

This tensor with the elements replaced with the quotient of the element and the corresponding element of other.

Exceptions

ArgumentNullException

other is null.

DimensionMismatchException

The dimensions of other are not compatible with the dimensions of this tensor.

DivisionAssignment(Tensor<T>, T) Operator

Divides a matrix by a constant in place.
C#
C# does not support this operator.

Parameters

self  Tensor<T>
A Tensor<T>.
factor  T
A real number.

Return Value

Tensor<T>
A reference to self.

See Also