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