summaryrefslogtreecommitdiff
path: root/simulate.m
blob: aeef1804444645c79a89a9218ea88e0dafd13f96 (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('python %s %s %d', target, source_dir, n));
	toc();

end