  | DoubleLowerTriMatrixMultiply(DoubleLowerTriMatrix, DoubleLowerTriMatrix) Operator | 
            Multiply two lower triangular matrices.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleLowerTriMatrix operator *(
	DoubleLowerTriMatrix A,
	DoubleLowerTriMatrix B
)
Public Shared Operator * ( 
	A As DoubleLowerTriMatrix,
	B As DoubleLowerTriMatrix
) As DoubleLowerTriMatrix
public:
static DoubleLowerTriMatrix^ operator *(
	DoubleLowerTriMatrix^ A, 
	DoubleLowerTriMatrix^ B
)
static let inline (*)
        A : DoubleLowerTriMatrix * 
        B : DoubleLowerTriMatrix  : DoubleLowerTriMatrixParameters
- A  DoubleLowerTriMatrix
 - A lower triangular matrix.
 - B  DoubleLowerTriMatrix
 - A lower triangular matrix.
 
Return Value
DoubleLowerTriMatrixA lower triangular matrix 
C where 
C[i,j] = A[i,j] * B[i,j].
Exceptions
RemarksThis is not the inner product of A and B.
See Also