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