jax.scipy.linalg.cho_solve
Warning
This page was created from a pull request (#9655).
jax.scipy.linalg.cho_solveΒΆ
- jax.scipy.linalg.cho_solve(c_and_lower, b, overwrite_b=False, check_finite=True)[source]ΒΆ
Solve the linear equations A x = b, given the Cholesky factorization of A.
LAX-backend implementation of
cho_solve()
.Original docstring below.
- Parameters
(c (tuple, (array, bool)) β Cholesky factorization of a, as given by cho_factor
lower) (tuple, (array, bool)) β Cholesky factorization of a, as given by cho_factor
b (array) β Right-hand side
overwrite_b (bool, optional) β Whether to overwrite data in b (may improve performance)
check_finite (bool, optional) β Whether to check that the input matrices contain only finite numbers. Disabling may give a performance gain, but may result in problems (crashes, non-termination) if the inputs do contain infinities or NaNs.
- Returns
x β The solution to the system A x = b
- Return type
array