times

Matrix multiplication. The left-hand-side and the right-hand-side tensors will be multiplied using matrix multiplication rules.

Return

The expression of the multiplication operation.

Parameters

other

the tensor multiplied with this tensor.

Throws

If the tensors do not have compatible shapes for matrix multiplication, or this tensor or the other tensor is not a matrix.


Matrix multiplication. The left-hand-side tensor and the matrix evaluated from the right-hand-side expression will be multiplied using matrix multiplication rules.

Return

The expression of the multiplication operation.

Parameters

other

the matrix evaluated from the tensor arithmetic expression multiplied with this tensor.

Throws

If the tensor and expression do not have compatible shapes for matrix multiplication, or this tensor is not a matrix.


Matrix multiplication. The matrix evaluated from the left-hand-side expression and the right-hand-side tensor will be multiplied using matrix multiplication.

Return

The expression of the multiplication operation.

Parameters

other

the tensor multiplied with the matrix evaluated from this expression.

Throws

If the expression and tensor do not have compatible shapes for matrix multiplication, or the other tensor is not a matrix.


Matrix multiplication. The matrices evaluated from the left-hand-side and the right-hand-side expressions will be multiplied using matrix multiplication.

Return

The expression of the multiplication operation.

Parameters

other

the matrix evaluated from the tensor arithmetic expression multiplied with the matrix evaluated from this expression.

Throws

If the expressions do not have compatible shapes for matrix multiplication.


Scalar multiplication. The matrix evaluated from the tensor expression will be multiplied element-by-element with a scalar value.

Return

The expression of the multiplication operation.

Parameters

other

the scalar value multiplied with the matrix evaluated from this expression.


Scalar multiplication. The tensor will be multiplied element-by-element with a scalar value.

Return

The expression of the multiplication operation.

Parameters

other

the scalar value multiplied with this tensor.

Throws

If this tensor is not a matrix.


Scalar multiplication. A scalar value will be multiplied element-by-element with the matrix evaluated from the tensor expression.

Return

The expression of the multiplication operation.

Parameters

other

the matrix evaluated from the tensor expression multiplied with this scalar value.


Scalar multiplication. A scalar value will be multiplied element-by-element with the tensor.

Return

The expression of the multiplication operation.

Parameters

other

the tensor multiplied with this scalar value.

Throws

If the other tensor is not a matrix.