Click or drag to resize

FloatSymmetricMatrixMultiply(FloatSymmetricMatrix, FloatSymmetricMatrix) Method

Multiply two lower symmetric matrices.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatSymmetricMatrix Multiply(
	FloatSymmetricMatrix A,
	FloatSymmetricMatrix B
)

Parameters

A  FloatSymmetricMatrix
A symmetric matrix.
B  FloatSymmetricMatrix
A symmetric matrix.

Return Value

FloatSymmetricMatrix
A symmetric matrix C where C[i,j] = A[i,j] * B[i,j].
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the two matrices do not have the same orders.
Remarks
This is not the inner product of A and B.
See Also