Solve an equation system, a x = b, given the LU factorization of a
(lu, piv) :
Factorization of the coefficient matrix a, as given by lu_factor
b : array
Right-hand side
trans : {0, 1, 2}
Type of system to solve: trans system 0 a x = b 1 a^T x = b 2 a^H x = b
Type of system to solve:
trans
system
0
a x = b
1
a^T x = b
2
a^H x = b
x : array
Solution to the system
See also
scipy.linalg.lu_factor
scipy.linalg.svd
Enter search terms or a module, class or function name.