|  | FloatComplexCsrSparseMatrixTransposeAdd(FloatComplexCsrSparseMatrix, FloatComplexCsrSparseMatrix, FloatComplex) 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
 Syntax
Syntaxpublic static FloatComplexCsrSparseMatrix TransposeAdd(
	FloatComplexCsrSparseMatrix A,
	FloatComplexCsrSparseMatrix B,
	FloatComplex beta
)
Public Shared Function TransposeAdd ( 
	A As FloatComplexCsrSparseMatrix,
	B As FloatComplexCsrSparseMatrix,
	beta As FloatComplex
) As FloatComplexCsrSparseMatrix
public:
static FloatComplexCsrSparseMatrix^ TransposeAdd(
	FloatComplexCsrSparseMatrix^ A, 
	FloatComplexCsrSparseMatrix^ B, 
	FloatComplex beta
)
static member TransposeAdd : 
        A : FloatComplexCsrSparseMatrix * 
        B : FloatComplexCsrSparseMatrix * 
        beta : FloatComplex -> FloatComplexCsrSparseMatrix Parameters
- A  FloatComplexCsrSparseMatrix
- A sparse matrix.
- B  FloatComplexCsrSparseMatrix
- A sparse matrix.
- beta  FloatComplex
- A scalar.
Return Value
FloatComplexCsrSparseMatrixSparse matrix representation of 
A' + beta*B See Also
See Also