| FloatComplexLowerTriMatrixMultiply(FloatComplexLowerTriMatrix, FloatComplexLowerTriMatrix) Method |
Multiply two lower triangular matrices.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public static FloatComplexLowerTriMatrix Multiply(
FloatComplexLowerTriMatrix A,
FloatComplexLowerTriMatrix B
)
Public Shared Function Multiply (
A As FloatComplexLowerTriMatrix,
B As FloatComplexLowerTriMatrix
) As FloatComplexLowerTriMatrix
public:
static FloatComplexLowerTriMatrix^ Multiply(
FloatComplexLowerTriMatrix^ A,
FloatComplexLowerTriMatrix^ B
)
static member Multiply :
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