- Learn the basics of Simulink. This tutorial might be a good place to start.
- In your case, you can try to use the built in State space block in Simulink. Documentation is here.
- You can also use the general LTI block in the Control Systems Toolbox to import the 'ss' state space object from the MATLAB base workspace into Simulink. Take a look at its documentation here.
How can i make a simulink model of a .m file?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Umair Khan
le 13 Oct 2016
Réponse apportée : Swarooph
le 13 Oct 2016
I have an .m file which defines a state space and then plots its impulse response. Now, I want to make a Simulink model of this. As I am not familiar with Simulink, can anyone help me in finding an easy way to create a Simulink model directly from the .m file?
Here I provide the code in the .m file:
-------------------------------------------------------
k=11.417;
L=0.8603;
Jm=12e-6;
JI=235e-6;
a=k/Jm;
b=k/JI;
A=[0 1 0 0;-a 0 a 0;0 0 0 1;b 0 -b 0];
B=1/Jm*[0;1;0;0];
C=[0 1 0 0;0 0 0 1];
D=zeros(2,1);
plant=ss(A,B,C,D);
impulse(plant,0.025);
--------------------------------------------------------
Thanks
0 commentaires
Réponse acceptée
Swarooph
le 13 Oct 2016
Short answer,
In general, there is no magic function or button that will convert your MATLAB code into Simulink model. However there maybe some specific toolbox utilities that can help do this for specific functionalities. I am not aware of such a way to create state space models though.
Long answer,
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Programmatic Model Editing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!