summaryrefslogtreecommitdiff
path: root/simulate.m
diff options
context:
space:
mode:
Diffstat (limited to 'simulate.m')
-rw-r--r--simulate.m5
1 files changed, 3 insertions, 2 deletions
diff --git a/simulate.m b/simulate.m
index 6cd2689..d459192 100644
--- a/simulate.m
+++ b/simulate.m
@@ -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