diff options
-rw-r--r-- | solvers.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ def gaussian_eliminate( return None # Back substitution - xx = np.zeros((nn, 1)) + xx = np.zeros((nn, 1), dtype=np.float_) for i in range(nn - 1, -1, -1): xx[i] = (ee[i, nn] - np.dot(ee[i, i:nn], xx[i:nn])) / ee[i, i] |