cr.sparse.sls.LSQRSolution¶
- class cr.sparse.sls.LSQRSolution(x: jax.Array, A_norm: jax.Array, A_cond: jax.Array, x_norm: jax.Array, r_norm: jax.Array, atr_norm: jax.Array, iterations: int, n_times: int = 0, n_trans: int = 0)[source]¶
Solution for LSQR algorithm
Attributes
A_condLower estimate on the condition number of A
A_normLower estimate of norm of A
atr_normEstimate on the norm of the proxy residual A^H r
iterationsThe number of iterations it took to complete
n_timesNumber of times A x computed
n_transNumber of times A.T b computed
r_normEstimate on the norm of the residual
xSolution vector
x_normEstimate on the norm of the solution vector x