Click or drag to resize

FloatLowerTriMatrixDivision(FloatLowerTriMatrix, FloatLowerTriMatrix) Operator

Divide a lower triangular matrix by another.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatLowerTriMatrix operator /(
	FloatLowerTriMatrix A,
	FloatLowerTriMatrix B
)

Parameters

A  FloatLowerTriMatrix
A lower triangular matrix.
B  FloatLowerTriMatrix
A lower triangular matrix.

Return Value

FloatLowerTriMatrix
A lower triangular matrix C where C[i,j] = A[i,j] / B[i,j].
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the two matrices do not have the same dimensions.
See Also