m语言实现对simulink的操作,如新建、保存等
1、使用m语言新建一个Simulink模型,取名为mytest,并打开,代码如下:new_system('mytest');open_system('mytest');

2、使用m语言保存这个模型,代码如下:save_system('mytest');

3、使用m语言关闭这个模型,代码如下:close_system('mytest');

4、使用m语言删除这个模型,代码如下:delete('mytest.slx');

1、使用m语言新建一个Simulink模型,取名为mytest,并打开,代码如下:new_system('mytest');open_system('mytest');
2、使用m语言保存这个模型,代码如下:save_system('mytest');
3、使用m语言关闭这个模型,代码如下:close_system('mytest');
4、使用m语言删除这个模型,代码如下:delete('mytest.slx');