How does Simulink recognize variables from an m-file?
9 views (last 30 days)
Show older comments
I am trying to run a .slx file named train.slx from the Simulink window, and have it use variables defined in a .m file (named system.m). Should both the .m file and the .slx have the same prefix (i.e., "train") in order for the train.slx Simulink file to recognize that it should be using the variables from the specific m-file that I want it to read?
Thanks in advance! :) I'm very confused about this. I know it's probably a very simple operation but I am still learning Simulink and am unsure how this works.
0 Comments
Answers (1)
Azzi Abdelmalek
on 27 Apr 2014
Edited: Azzi Abdelmalek
on 27 Apr 2014
Don't use the same name, also avoid the name system. Before running your simulink model, you have to run your m-file
If you want to run automatically your m-file when run your simulink model, you can add to the initfcn of your model callback the names of your m-files
See Also
Categories
Find more on Naming Conventions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!