Matrix<T>.DotDivide Operator

Returns the element-wise quotient of two matrices.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
C# does not support this operator.

Parameters

matrix1  Matrix<T>
The Matrix<T> whose elements are to be divided.
matrix2  Matrix<T>
The Matrix<T> whose elements are the divisors.

Return Value

Matrix<T>
A new matrix that contains the element-wise quotient of matrix1 and matrix2.

See Also