Matrix<T>.Elementwise Divide As Left Core Method
Divides two matrices element-wise.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
A matrix whose elements are the quotient of the corresponding elements of this matrix and right.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
protected virtual Matrix<T> ElementwiseDivideAsLeftCore(
Matrix<T> right,
Matrix<T>? result
)
Parameters
- right Matrix<T>
- The right operand in the division.
- result Matrix<T>
- The matrix that is to hold the result. May be null.
Return Value
Matrix<T>A matrix whose elements are the quotient of the corresponding elements of this matrix and right.
Exceptions
Dimension | This matrix and right do not have the same length. |