Streamline pathline and streakline
Afficher commentaires plus anciens
Hi, can you help me to plot 2D streamline, pathline and streakline in MATLAB for u=sin(t) , v= 2t
1 commentaire
Garland Garland
le 23 Déc 2021
t = linspace(0,2*pi) ; u = sin(t) ; v = 2*t ; [u,v] = meshgrid(u,v) ; streamslice(u,v)
Réponses (1)
t = linspace(0,2*pi) ;
u = sin(t) ;
v = 2*t ;
[u,v] = meshgrid(u,v) ;
streamslice(u,v)
Catégories
En savoir plus sur Vector Fields dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
