Back to Sparse Direct Solver (SuperLU)
slu.solvers.solveSparseTranspose
Solve A^T x = b (transpose system) where A is in CSC format.
Syntax
slu.solvers.solveSparseTranspose(A, b, options?)
Description
Solve A^T x = b (transpose system) where A is in CSC format. Solves the system with the transpose of A. Useful when you have A but need to solve with its transpose without explicitly computing it.
Parameters
| Name | Description |
|---|---|
| A | - Sparse matrix in CSC format |
| b | - Right-hand side vector |
| options(optional) | - Solver options |
Returns
SolveResult