Constant Matrix<T>.Elementwise Divide As Right Core Method
Divides two matrices element-wise.
Definition
Namespace: Numerics.NET.LinearAlgebra
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 left.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
protected override Matrix<T> ElementwiseDivideAsRightCore(
Matrix<T> left,
Matrix<T>? result
)
Parameters
- left Matrix<T>
- The left 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 left.
Exceptions
Dimension | This matrix and left do not have the same length. |