How to Plot Delay Differential Equations Graphic
2 ビュー (過去 30 日間)
古いコメントを表示
I need to draw a DDE graph for my homework. But I don't know how to draw. Can you teach me how to draw a DDE graph?
0 件のコメント
採用された回答
Jens Kritian Poulsen
2021 年 2 月 12 日
figure(1); x=[1 2 3 4]; y=[4 6 8 10]; plot(x,y);
figure(2); x=[0:0.1:10]; y=x.*x; plot(x,y);
Good luck
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Delay Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!