Click or drag to resize

DoubleComplexCsrSparseMatrixAdd(DoubleComplexCsrSparseMatrix, DoubleComplexCsrSparseMatrix) 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.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexCsrSparseMatrix Add(
	DoubleComplexCsrSparseMatrix A,
	DoubleComplexCsrSparseMatrix B
)

Parameters

A  DoubleComplexCsrSparseMatrix
A sparse matrix.
B  DoubleComplexCsrSparseMatrix
A sparse matrix.

Return Value

DoubleComplexCsrSparseMatrix
Sparse matrix representation of A + B
See Also