Clear Filters
Clear Filters

creating a .mdl file.

9 views (last 30 days)
Rajan
Rajan on 21 Dec 2011
Answered: Michael on 31 Mar 2014
What is the command used to create a .mdl(Simulink model) file.?

Answers (2)

Kaustubha Govind
Kaustubha Govind on 21 Dec 2011
Either:
>> open_system(new_system))
Or:
>> simulink
File->New->Model

Michael
Michael on 31 Mar 2014
open_system only opens a current existing system. If you want to create one from scratch:
>> new_system('test') >> if ismac() >> save_system('test3','test3.slx') %for mac use extension .slx, windows use .mdl >> end; >> if ispc() >> save_system('test3','test3.mdl') >> end;
This should work.

Categories

Find more on Simulink Functions in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!