Click or drag to resize

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

Parameters

A  FloatComplexCsrSparseMatrix
A sparse matrix.
B  FloatComplexCsrSparseMatrix
A sparse matrix.

Return Value

FloatComplexCsrSparseMatrix
Sparse matrix representation of A + B
See Also