aboutsummaryrefslogtreecommitdiff
path: root/simulate.m
blob: 35e6ca01e79931793b6cf4756083368523176e9d (plain)
1
2
3
4
5
6
7
8
9
10
11
function simulate()

	global source_dir;
	global n;

	target = [source_dir, 'simulate.py'];
	tic();
	runCommand(sprintf('python2 %s %s %d', target, source_dir, n));
	toc();

end