How to create a new simulink model (untitled), without using 'sfnew' command?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuesta aceptada
TAB
el 23 de En. de 2012
% Create & open new model (without collecting handle)
>> open_system(new_system);
%Create new model, get handle & open model
>> h = new_system;
>> open_system(h);
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Programmatic Model Editing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!