ConstantMatrix<T>.ElementwiseDivideAsRightCore Method
Divides two matrices element-wise.
DefinitionPermalink
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.4
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.4
protected override Matrix<T> ElementwiseDivideAsRightCore(
Matrix<T> left,
Matrix<T>? result
)
ParametersPermalink
- left Matrix<T>
- The left operand in the division.
- result Matrix<T>
- The matrix that is to hold the result. May be null.
Return ValuePermalink
Matrix<T>A matrix whose elements are the quotient of the corresponding elements of this matrix and left.
ExceptionsPermalink
Dimension | This matrix and left do not have the same length. |