How can i make a simulink model of a .m file?
이전 댓글 표시
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개)
카테고리
도움말 센터 및 File Exchange에서 Event Functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!