Streamline pathline and streakline

Hi, can you help me to plot 2D streamline, pathline and streakline in MATLAB for u=sin(t) , v= 2t

1 Comment

t = linspace(0,2*pi) ; u = sin(t) ; v = 2*t ; [u,v] = meshgrid(u,v) ; streamslice(u,v)

Sign in to comment.

Answers (1)

t = linspace(0,2*pi) ;
u = sin(t) ;
v = 2*t ;
[u,v] = meshgrid(u,v) ;
streamslice(u,v)

Categories

Asked:

on 20 Dec 2021

Commented:

on 23 Dec 2021

Community Treasure Hunt

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

Start Hunting!