  | FloatComplexCsrSparseMatrixAdd(FloatComplexCsrSparseMatrix, FloatComplexCsrSparseMatrix) Method | 
            Compute the sum of two sparse matrices.
            Performs the operation C = A + B, where
            C[i,j] = A[i,j] + B[i,j].
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatComplexCsrSparseMatrix Add(
	FloatComplexCsrSparseMatrix A,
	FloatComplexCsrSparseMatrix B
)
Public Shared Function Add ( 
	A As FloatComplexCsrSparseMatrix,
	B As FloatComplexCsrSparseMatrix
) As FloatComplexCsrSparseMatrix
public:
static FloatComplexCsrSparseMatrix^ Add(
	FloatComplexCsrSparseMatrix^ A, 
	FloatComplexCsrSparseMatrix^ B
)
static member Add : 
        A : FloatComplexCsrSparseMatrix * 
        B : FloatComplexCsrSparseMatrix -> FloatComplexCsrSparseMatrix Parameters
- A  FloatComplexCsrSparseMatrix
 - A sparse matrix.
 - B  FloatComplexCsrSparseMatrix
 - A sparse matrix.
 
Return Value
FloatComplexCsrSparseMatrixSparse matrix representation of 
A + B
See Also