aesara.tensor.slinalg.cho_solve#
- aesara.tensor.slinalg.cho_solve(c_and_lower, b, check_finite=True)[source]#
Solve the linear equations A x = b, given the Cholesky factorization of A.
- 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
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.