How to plot phase potrait and vector field for a three dimensional ODE system?
1 回表示 (過去 30 日間)
古いコメントを表示
System:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160245/image.png)
attempt:
if true
[x1, x2, x3] = meshgrid(-.1:0.08:0.1, -.1:.08:.1, -0.1:0.08:0.1);
x1dot = x1;
x2dot = x2;
x3dot = -x3;
quiver3(x1,x2,x2,x1dot,x2dot,x3dot)
end
figure obtained:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160246/image.jpeg)
Need help with this.
0 件のコメント
回答 (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!