Skip to content

Commit 5c7b7ad

Browse files
committed
ugh
1 parent 85bf4c7 commit 5c7b7ad

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/compas/numerical/linalg.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,7 @@ def spsolve_with_known(A, b, x, known):
708708
>>> A = array([[2, 1, 3], [2, 6, 8], [6, 8, 18]])
709709
>>> b = array([[1], [3], [5]])
710710
>>> x = array([[0.3], [0], [0]])
711+
>>> x = solve_with_known(A, b, x, [0])
711712
>>> allclose(x, array([[0.3], [0.4], [0.0]]))
712713
True
713714

0 commit comments

Comments
 (0)