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.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static DoubleComplexCsrSparseMatrix TransposeAdd(
	DoubleComplexCsrSparseMatrix A,
	DoubleComplexCsrSparseMatrix B
)
Visual Basic (Declaration)
Public Shared Function TransposeAdd ( _
	A As DoubleComplexCsrSparseMatrix, _
	B As DoubleComplexCsrSparseMatrix _
) As DoubleComplexCsrSparseMatrix
Visual C++
public:
static DoubleComplexCsrSparseMatrix^ TransposeAdd(
	DoubleComplexCsrSparseMatrix^ A, 
	DoubleComplexCsrSparseMatrix^ B
)

Return Value

Sparse matrix representation of A' + B

See Also