How to create a new simulink model (untitled), without using 'sfnew' command?
조회 수: 3 (최근 30일)
이전 댓글 표시
I want to create an untitled simulink model, using Matlab command interface. How should i do that?
I dont want to use sfnew command. what else i should use?
댓글 수: 0
채택된 답변
TAB
2012년 1월 23일
% Create & open new model (without collecting handle)
>> open_system(new_system);
%Create new model, get handle & open model
>> h = new_system;
>> open_system(h);
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!