필터 지우기
필터 지우기

Phase plane of a differential system

조회 수: 1 (최근 30일)
abc abc
abc abc 2015년 5월 5일
댓글: Star Strider 2015년 5월 6일
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 !!!

채택된 답변

Star Strider
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.
See the documentation on Array vs. Matrix Operations for details on the differences.

추가 답변 (1개)

abc abc
abc abc 2015년 5월 6일
thank you very much it works :)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by