I want to plot the vector field on F=x i+ j
33 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Atom
am 12 Jun. 2023
Bearbeitet: Alan Stevens
am 12 Jun. 2023
I want to plot the vector field on
$\vec F=x\cap i+\cap j$
Also how to plot the vector field of F=2*i+j?
How to do that
[x,y] = meshgrid(-3:.15:3,-3:.15:3);
Fx = x;
Fy = 1;
figure;
quiver(x,y,Fx,Fy,'k','linewidth',1)
0 Kommentare
Akzeptierte Antwort
Alan Stevens
am 12 Jun. 2023
Bearbeitet: Alan Stevens
am 12 Jun. 2023
Do you mean like this?
[x,y] = meshgrid(-3:.15:3,-3:.15:3);
Fx = x;
Fy = ones(size(y)); %%%%%%%%%%%
figure;
quiver(x,y,Fx,Fy,'k','linewidth',1)
For 2*i + j juat make Fx = 2*ones(size(x)).
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Vector Fields 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!