Phase plane of a differential system
6 ビュー (過去 30 日間)
古いコメントを表示
Hi, i'm trying to plot a phase plane but it doesn't work :(
This is the matlab code:
clear all
clc
[X,Y] = meshgrid(0:0.2:5,0:0.2:5);
u = -((3*X)/(2+X))*(Y-X);
v = zeros(26);
figure
quiver(X,Y,u,v);
And matlab answer me: Warning: Matrix is singular to working precision.
Thank you very much for your help !!!
0 件のコメント
採用された回答
Star Strider
2015 年 5 月 5 日
You need to do element-wise (array) operations.
Change the ‘u’ assignment to:
u = -((3*X)./(2+X)).*(Y-X);
and it works.
0 件のコメント
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!