Click or drag to resize

DoubleSymmetricMatrixSubtraction(DoubleSymmetricMatrix, DoubleSymmetricMatrix) Operator

Subtracts one symmetric matrix from another.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleSymmetricMatrix operator -(
	DoubleSymmetricMatrix A,
	DoubleSymmetricMatrix B
)

Parameters

A  DoubleSymmetricMatrix
A symmetric matrix.
B  DoubleSymmetricMatrix
A symmetric matrix.

Return Value

DoubleSymmetricMatrix
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 order.
See Also