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