1
votes

I've developed a head tracking simulink model and am wondering if its possible to somehow run this on a unix based os without any window manager? Simply from the command line.

2

2 Answers

2
votes

You can start matlab from a unix prompt without the desktop

% matlab -nodesktop

Then you can simulate the model by just loading it,

>> load_systm('myModel');
>> sim('myModel');
1
votes

Can you use matlab -r "[matlab statements]" to run your codes?