Reputation: 16317
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.
Upvotes: 1
Views: 2213
Reputation: 1644
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');
Upvotes: 2