|  | DoubleSymCsrSparseMatrixSubtraction Operator | 
            Subtracts two symmetric sparse matrices.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic static DoubleSymCsrSparseMatrix operator -(
	DoubleSymCsrSparseMatrix A,
	DoubleSymCsrSparseMatrix B
)
Public Shared Operator - ( 
	A As DoubleSymCsrSparseMatrix,
	B As DoubleSymCsrSparseMatrix
) As DoubleSymCsrSparseMatrix
public:
static DoubleSymCsrSparseMatrix^ operator -(
	DoubleSymCsrSparseMatrix^ A, 
	DoubleSymCsrSparseMatrix^ B
)
static let inline (-)
        A : DoubleSymCsrSparseMatrix * 
        B : DoubleSymCsrSparseMatrix  : DoubleSymCsrSparseMatrixParameters
- A  DoubleSymCsrSparseMatrix
- A symmetric sparse matrix.
- B  DoubleSymCsrSparseMatrix
- A symmetric sparse matrix.
Return Value
DoubleSymCsrSparseMatrixA symmetric sparse matrix 
C where 
C[i,j] = A[i,j] - B[i,j].
 Exceptions
Exceptions See Also
See Also