  | FloatCsrSparseMatrixTransposeAdd(FloatCsrSparseMatrix, FloatCsrSparseMatrix, Single) Method | 
            Computes the sum of the transpose of one sparse matrix with a scalar multiple another sparse matrix. 
            Performs the operation C = A' + beta*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 FloatCsrSparseMatrix TransposeAdd(
	FloatCsrSparseMatrix A,
	FloatCsrSparseMatrix B,
	float beta
)
Public Shared Function TransposeAdd ( 
	A As FloatCsrSparseMatrix,
	B As FloatCsrSparseMatrix,
	beta As Single
) As FloatCsrSparseMatrix
public:
static FloatCsrSparseMatrix^ TransposeAdd(
	FloatCsrSparseMatrix^ A, 
	FloatCsrSparseMatrix^ B, 
	float beta
)
static member TransposeAdd : 
        A : FloatCsrSparseMatrix * 
        B : FloatCsrSparseMatrix * 
        beta : float32 -> FloatCsrSparseMatrix Parameters
- A  FloatCsrSparseMatrix
 - A sparse matrix.
 - B  FloatCsrSparseMatrix
 - A sparse matrix.
 - beta  Single
 - A scalar.
 
Return Value
FloatCsrSparseMatrixSparse matrix representation of 
A' + beta*B
See Also