Visualize a vector field function with matlab

1 vue (au cours des 30 derniers jours)
Felix Richter
Felix Richter le 18 Sep 2021
Commenté : Felix Richter le 18 Sep 2021
Hello,
I am trying to visualize the vector field function
F(x,y,z) = xz * i + xy * j + 3xz * k
with Matlab (2020b).
I tried quiver3, but the examples were not really helpful.
Thanks in advance for help!
Best,
Felix

Réponse acceptée

the cyclist
the cyclist le 18 Sep 2021
x = -3 : 0.5 : 3;
y = -3 : 0.5 : 3;
z = -3 : 0.5 : 3;
[xx,yy,zz] = meshgrid(x,y,z);
Fx = xx.*zz;
Fy = xx.*yy;
Fz = 3*xx.*zz;
figure
quiver3(xx,yy,zz,Fx,Fy,Fz)

Plus de réponses (0)

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by