Solve the linear equations A x = b, given the Cholesky factorization of A.
(cb, lower) : tuple, (array, bool)
cb is the Cholesky factorization of A, as given by cholesky_banded. lower must be the same value that was given to cholesky_banded.
b : array
Right-hand side
overwrite_b : bool
If True, the function will overwrite the values in b.
x : array
The solution to the system A x = b
See also
Notes
New in version 0.8.0.
scipy.linalg.cho_solve
scipy.linalg.qr
Enter search terms or a module, class or function name.