(lu, piv) :
Factorization of the coefficient matrix a, as given by lu_factor
b : array
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
|
check_finite : boolean, optional
Whether to check the input matrixes contain only finite numbers.
Disabling may give a performance gain, but may result to problems
(crashes, non-termination) if the inputs do contain infinities or NaNs.
|