Click or drag to resize

FloatSymmetricMatrixSubtract(FloatSymmetricMatrix, FloatSymmetricMatrix) Method

Subtracts one symmetric matrix from another.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatSymmetricMatrix Subtract(
	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 A and B do not have the same order.
See Also