diff options
Diffstat (limited to 'simulate.m')
-rw-r--r-- | simulate.m | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,10 +1,11 @@ function simulate() global source_dir; - n = 4; + global n; + target = [source_dir, 'simulate.py']; tic(); - runCommand(sprintf('python %s %s', target, source_dir)); + runCommand(sprintf('python %s %s %0.0f', target, source_dir, n)); toc(); end |