Streamline pathline and streakline
Show older comments
Hi, can you help me to plot 2D streamline, pathline and streakline in MATLAB for u=sin(t) , v= 2t
1 Comment
Garland Garland
on 23 Dec 2021
t = linspace(0,2*pi) ; u = sin(t) ; v = 2*t ; [u,v] = meshgrid(u,v) ; streamslice(u,v)
Answers (1)
t = linspace(0,2*pi) ;
u = sin(t) ;
v = 2*t ;
[u,v] = meshgrid(u,v) ;
streamslice(u,v)
Categories
Find more on Vector Fields in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!