Click or drag to resize

FloatLowerTriMatrixMultiply(FloatLowerTriMatrix, FloatLowerTriMatrix) Operator

Multiply two lower triangular matrices.

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.
Remarks
This is not the inner product of A and B.
See Also