Streamline pathline and streakline
14 views (last 30 days)
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)
KSSV
on 21 Dec 2021
t = linspace(0,2*pi) ;
u = sin(t) ;
v = 2*t ;
[u,v] = meshgrid(u,v) ;
streamslice(u,v)
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!