plot the exp function
1 回表示 (過去 30 日間)
古いコメントを表示
I'd like to draw graph like this with using plot, not ezplot.
I've tried several expression but not worked.
0 件のコメント
採用された回答
Birdman
2020 年 4 月 1 日
syms y(t)
eq=diff(y,2)+13*diff(y)+40*y==4;
Dy=diff(y);
Y(t)=dsolve(eq,[y(0)==0 Dy(0)==0])
t=0:0.001:0.9;
plot(t,Y(t))
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Particle & Nuclear Physics についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!