(err, flag)
| 124 | raise LinAlgError("SVD did not converge in Linear Least Squares") |
| 125 | |
| 126 | def _raise_linalgerror_qr(err, flag): |
| 127 | raise LinAlgError("Incorrect argument found while performing " |
| 128 | "QR factorization") |
| 129 | |
| 130 | def get_linalg_error_extobj(callback): |
| 131 | extobj = list(_linalg_error_extobj) # make a copy |
nothing calls this directly
no test coverage detected