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

Garland Garland
Garland Garland 2021년 12월 23일
t = linspace(0,2*pi) ; u = sin(t) ; v = 2*t ; [u,v] = meshgrid(u,v) ; streamslice(u,v)

댓글을 달려면 로그인하십시오.

답변 (1개)

KSSV
KSSV 2021년 12월 21일

2 개 추천

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

카테고리

도움말 센터File Exchange에서 Vector Fields에 대해 자세히 알아보기

질문:

2021년 12월 20일

댓글:

2021년 12월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by