Click or drag to resize

DoubleComplexCsrSparseMatrixTransposeAdd(DoubleComplexCsrSparseMatrix, DoubleComplexCsrSparseMatrix) Method

Computes the sum of the transpose of one sparse matrix with another sparse matrix. Performs the operation C = A' + B, where ' denotes transpose and C[i,j] = A[j,i] + B[i,j].

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexCsrSparseMatrix TransposeAdd(
	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