#!/bin/bash

all: test

test:
	python run_v3.py
	matlab -nodesktop -nosplash -r run_v3
	python run_v4.py
	matlab -nodesktop -nosplash -r run_v4
	python run_v5.py
	matlab -nodesktop -nosplash -r run_v5
	python run_v6.py
	matlab -nodesktop -nosplash -r run_v6
	python run_vs1.py
	matlab -nodesktop -nosplash -r run_vs1
	python run_vs2.py
	matlab -nodesktop -nosplash -r run_vs2
	python run_va1.py
	matlab -nodesktop -nosplash -r run_va1

clean:
	rm -rf ./*.asv
	rm -rf ./__pycache__

