Back to Eigenvalue Solvers (ARPACK)
ar.sparse.csrMatvecT
Create a transpose matrix-vector product function from CSR format.
Syntax
ar.sparse.csrMatvecT(indptr, indices, data, shape)
Description
Create a transpose matrix-vector product function from CSR format. Computes y = A^T * x efficiently using CSR format.
Parameters
| Name | Description |
|---|---|
| indptr | - Row pointer array |
| indices | - Column indices array |
| data | - Non-zero values array |
| shape | - Matrix dimensions [m, n] |
Returns
MatVecFunction