Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Simulink model of system

1 回表示 (過去 30 日間)
Mohsina Zafar
Mohsina Zafar 2019 年 3 月 18 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hello,
I have a system that I coded in Matlab .m file. As I have to extend it further into a complex control loop, I wish to convert it into simulink model.
But the plot of simulink model is not coming out to be the same as the code plot. Kindly check what the problem might be.
Simulink file is attached.
.m Code:
[t,x] = ode45(@EOM,[0 10],[0;pi/2]);
plot(t,x(:,1),'-',t,x(:,2),'-')
xlabel('Time t');
ylabel('Solution x');
legend('x_1','x_2')
function [dxdt] =EOM(t,x)
g=9.8 ; l=0.3 ; m1=4 ;
u=20*exp(-t*0.2).*cos(2*pi*t);
dxdt = [x(2); -(g/l)*cos(x(1))+u/(m1*l^2)];
end

回答 (0 件)

この質問は閉じられています。

製品


リリース

R2015a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by