Variables | |
A = np.random.rand(dim, dim) | |
B = A.dot(X) | |
int | dim = 100 |
L = llt.matrixL() | |
llt = eigenpy.LLT(A) | |
X = np.random.rand(dim, 20) | |
X_est = llt.solve(B) | |
Definition at line 6 of file test_LLT.py.
test_LLT.B = A.dot(X) |
Definition at line 16 of file test_LLT.py.
int test_LLT.dim = 100 |
Definition at line 5 of file test_LLT.py.
test_LLT.L = llt.matrixL() |
Definition at line 12 of file test_LLT.py.
test_LLT.llt = eigenpy.LLT(A) |
Definition at line 10 of file test_LLT.py.
test_LLT.X = np.random.rand(dim, 20) |
Definition at line 15 of file test_LLT.py.
test_LLT.X_est = llt.solve(B) |
Definition at line 17 of file test_LLT.py.