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