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.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static DoubleComplexCsrSparseMatrix TransposeAdd( DoubleComplexCsrSparseMatrix A, DoubleComplexCsrSparseMatrix B, DoubleComplex beta ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function TransposeAdd ( _ A As DoubleComplexCsrSparseMatrix, _ B As DoubleComplexCsrSparseMatrix, _ beta As DoubleComplex _ ) As DoubleComplexCsrSparseMatrix |
| Visual C++ |
|---|
public: static DoubleComplexCsrSparseMatrix^ TransposeAdd( DoubleComplexCsrSparseMatrix^ A, DoubleComplexCsrSparseMatrix^ B, DoubleComplex beta ) |
Parameters
- A
- Type: CenterSpace.NMath.Matrix..::.DoubleComplexCsrSparseMatrix
A sparse matrix.
- B
- Type: CenterSpace.NMath.Matrix..::.DoubleComplexCsrSparseMatrix
A sparse matrix.
- beta
- Type: CenterSpace.NMath.Core..::.DoubleComplex
A scalar.