Variables | |
| A = np.eye(dim) | |
| B = A.dot(X) | |
| int | dim = 100 |
| minres = eigenpy.MINRES(A) | |
| X = np.random.rand(dim, 20) | |
| X_est = minres.solve(B) | |
| test_MINRES.A = np.eye(dim) |
Definition at line 5 of file test_MINRES.py.
| test_MINRES.B = A.dot(X) |
Definition at line 10 of file test_MINRES.py.
| int test_MINRES.dim = 100 |
Definition at line 4 of file test_MINRES.py.
| test_MINRES.minres = eigenpy.MINRES(A) |
Definition at line 7 of file test_MINRES.py.
| test_MINRES.X = np.random.rand(dim, 20) |
Definition at line 9 of file test_MINRES.py.
| test_MINRES.X_est = minres.solve(B) |
Definition at line 11 of file test_MINRES.py.