Sparse Linear Systems¶
The solvers in this module focus on traditional least square problems for square or overdetermined linear systems \(A x = b\) where the matrix \(A\) is sparse and is represented by a linear operator abstraction providing the matrix multiplication and adjoint multiplication functions.
Solvers¶
|
Solves the overdetermined system \(A x = b\) in least square sense using LSQR algorithm. |
|
Solves the overdetermined system \(A x = b\) in least square sense using LSQR algorithm. |
|
Computes the largest eigen value of a (symmetric) linear operator by power method |
|
Computes the largest eigen value of a (symmetric) linear operator by power method |
|
Solves the problem \(\widehat{x} = \text{arg} \min_{x} \frac{1}{2}\| b - A x \|_2^2 + \lambda \mathbf{R}(x)\) via iterative shrinkage and thresholding. |
|
Solves the problem \(\widehat{x} = \text{arg} \min_{x} \frac{1}{2}\| b - A x \|_2^2 + \lambda \mathbf{R}(x)\) via iterative shrinkage and thresholding. |
|
Solves the problem \(\widehat{x} = \text{arg} \min_{x} \frac{1}{2}\| b - A x \|_2^2 + \lambda \mathbf{R}(x)\) via fast iterative shrinkage and thresholding. |
|
Solves the problem \(\widehat{x} = \text{arg} \min_{x} \frac{1}{2}\| b - A x \|_2^2 + \lambda \mathbf{R}(x)\) via fast iterative shrinkage and thresholding. |
Data types¶
Solution for LSQR algorithm |
|
Solution of the eigen vector estimate |
|
ISTA algorithm state |
|
ISTA algorithm state |