how can we create simulink block using m file in matlab 2012a?
Mostrar comentarios más antiguos
i have created my m file in matlab is there any way to create a simulation block without using s function
Respuestas (2)
Azzi Abdelmalek
el 25 de Ag. de 2012
0 votos
you can use
- new_system('ModelName') to create a simulink model
- open_system('ModelName') to open your model
- add_block('Simulink/Sources/step','ModelName/BlockName') % for example
- set_param to configure blocks
- use add_line to connect block
- sim('ModelName',options) to start simulation
- close_system, to close your simulink Model
2 comentarios
Kaustubha Govind
el 27 de Ag. de 2012
Azzi: I think Kanwal's question is about calling his MATLAB code from Simulink, not about constructing a model using MATLAB code.
Salim
el 26 de Jul. de 2013
I think he misunderstood your question. You can use Matlab function block under User-defined functions.
Kaustubha Govind
el 27 de Ag. de 2012
0 votos
You can use the Interpreted MATLAB Function block if your function has one input and one output, and you don't intend to generate code from your model. Otherwise, you can try the (Embedded) MATLAB Function block. If you're not using the subset of functions supported for code-generation, you will need to declare those using coder.extrinsic.
Categorías
Más información sobre Simulink Functions en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!