Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开发了一个头部跟踪 simulink 模型,想知道是否有可能在没有任何窗口管理器的基于 unix 的操作系统上以某种方式运行它?只需从命令行。
您可以在没有桌面的情况下从 unix 提示符启动 matlab
% matlab -nodesktop
然后你可以通过加载它来模拟模型,
>> load_systm('myModel'); >> sim('myModel');
你可以使用 matlab -r "[matlab statements]" 来运行你的代码吗?