Skip to content

Commit

Permalink
Merge pull request #1727 from tklein23/develop
Browse files Browse the repository at this point in the history
Fixing data path in python modular examples.
  • Loading branch information
iglesias committed Oct 24, 2013
2 parents a830741 + 213b8a1 commit 57ee552
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -4,7 +4,7 @@
from scipy.io import mmread

# Loading an example sparse matrix of dimension 479x479, real, unsymmetric
mtx=mmread('../data/../logdet/west0479.mtx.gz')
mtx=mmread('../../../data/logdet/west0479.mtx.gz')

parameter_list=[[mtx,6000,10]]

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/python_modular/mathematics_logdet.py
Expand Up @@ -4,7 +4,7 @@
from scipy.io import mmread

# Loading an example sparse matrix of dimension 479x479, real, unsymmetric
mtx=mmread('../data/../logdet/west0479.mtx.gz')
mtx=mmread('../../../data/logdet/west0479.mtx.gz')

parameter_list=[[mtx,100,60,1]]

Expand Down

0 comments on commit 57ee552

Please sign in to comment.