solve function of ode45
1 回表示 (過去 30 日間)
古いコメントを表示
function dzdt= speed(x,z)
M=10; m=0.1; c=0.2; k=0.4; F=10*x ;
dzdt(1)=z(2);
dzdt(2)=-(c*z(1) - F + k*z)/(M + m);
dzdt=dzdt';
end
i want to use this function to plot y versus x versus
0 件のコメント
回答 (2 件)
Star Strider
2019 年 4 月 8 日
There is an error in the code you posted. I believe it should be:
dzdt(2,:)=-(c*z(1) - F + k*z(2))/(M + m);
Otherwise, this is a straightforward application of ode45 (link). See the function documentation for details.
0 件のコメント
madhan ravi
2019 年 4 月 9 日
Try this:
There is nothing wrong with your code:
dzdt(2)=-(c*z(1) - F + k*z(2))/(M + m);
% ^^^---missed it
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Ordinary Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!