Filter löschen
Filter löschen

Phase plane of a differential system

1 Ansicht (letzte 30 Tage)
abc abc
abc abc am 5 Mai 2015
Kommentiert: Star Strider am 6 Mai 2015
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 !!!

Akzeptierte Antwort

Star Strider
Star Strider am 5 Mai 2015
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.

Weitere Antworten (1)

abc abc
abc abc am 6 Mai 2015
thank you very much it works :)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by