Skip to content

Commit

Permalink
Fix EOF error
Browse files Browse the repository at this point in the history
  • Loading branch information
Lutfi Randiva committed Apr 19, 2022
1 parent 798c80f commit 783f39d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/probnum/problems/zoo/linalg/_random_linear_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def random_linear_system(
Linear system with random sparse matrix.
>>> import scipy.sparse
>>> random_sparse_matrix = lambda rng,m,n: scipy.sparse.random(m=m, n=n,
>>> random_sparse_matrix = lambda rng,m,n: scipy.sparse.random(m=m, n=n,\
random_state=rng)
>>> linsys_sparse = random_linear_system(rng, random_sparse_matrix, m=4, n=2)
>>> isinstance(linsys_sparse.A, scipy.sparse.spmatrix)
Expand Down

0 comments on commit 783f39d

Please sign in to comment.