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