Variables | |
A = rng.random((dim, dim)) | |
B = A.dot(X) | |
int | dim = 100 |
L = llt.matrixL() | |
llt = eigenpy.SimplicialLLT(A) | |
LU = L @ U | |
permutation = llt.permutationP() | |
rng = np.random.default_rng() | |
U = llt.matrixU() | |
X = rng.random((dim, 20)) | |
X_est = llt.solve(B) | |
Definition at line 9 of file test_SimplicialLLT.py.
test_SimplicialLLT.B = A.dot(X) |
Definition at line 25 of file test_SimplicialLLT.py.
int test_SimplicialLLT.dim = 100 |
Definition at line 6 of file test_SimplicialLLT.py.
test_SimplicialLLT.L = llt.matrixL() |
Definition at line 18 of file test_SimplicialLLT.py.
test_SimplicialLLT.llt = eigenpy.SimplicialLLT(A) |
Definition at line 14 of file test_SimplicialLLT.py.
Definition at line 21 of file test_SimplicialLLT.py.
test_SimplicialLLT.permutation = llt.permutationP() |
Definition at line 32 of file test_SimplicialLLT.py.
test_SimplicialLLT.rng = np.random.default_rng() |
Definition at line 7 of file test_SimplicialLLT.py.
test_SimplicialLLT.U = llt.matrixU() |
Definition at line 19 of file test_SimplicialLLT.py.
test_SimplicialLLT.X = rng.random((dim, 20)) |
Definition at line 24 of file test_SimplicialLLT.py.
test_SimplicialLLT.X_est = llt.solve(B) |
Definition at line 26 of file test_SimplicialLLT.py.