How does Simulink recognize variables from an m-file?
Mostrar comentarios más antiguos
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.
Respuestas (1)
Azzi Abdelmalek
el 27 de Abr. de 2014
Editada: Azzi Abdelmalek
el 27 de Abr. de 2014
0 votos
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
1 comentario
Kelsey
el 27 de Abr. de 2014
Categorías
Más información sobre Modeling en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!