  | DoubleCsrSparseMatrixTransposeAdd(DoubleCsrSparseMatrix, DoubleCsrSparseMatrix) 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.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleCsrSparseMatrix TransposeAdd(
	DoubleCsrSparseMatrix A,
	DoubleCsrSparseMatrix B
)
Public Shared Function TransposeAdd ( 
	A As DoubleCsrSparseMatrix,
	B As DoubleCsrSparseMatrix
) As DoubleCsrSparseMatrix
public:
static DoubleCsrSparseMatrix^ TransposeAdd(
	DoubleCsrSparseMatrix^ A, 
	DoubleCsrSparseMatrix^ B
)
static member TransposeAdd : 
        A : DoubleCsrSparseMatrix * 
        B : DoubleCsrSparseMatrix -> DoubleCsrSparseMatrix Parameters
- A  DoubleCsrSparseMatrix
 - A sparse matrix.
 - B  DoubleCsrSparseMatrix
 - A sparse matrix.
 
Return Value
DoubleCsrSparseMatrixSparse matrix representation of 
A' + B
See Also