How to plot3 using 3 equations

조회 수: 1 (최근 30일)
Myo Gyi
Myo Gyi 2018년 9월 28일
편집: KALYAN ACHARJYA 2018년 9월 28일
  댓글 수: 3
ANKUR KUMAR
ANKUR KUMAR 2018년 9월 28일
Please attach you codes and possible files (if any).
KALYAN ACHARJYA
KALYAN ACHARJYA 2018년 9월 28일
편집: KALYAN ACHARJYA 2018년 9월 28일
It your code and you are not sure whether correct or not?
How do you know, it is not true?

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

채택된 답변

Torsten
Torsten 2018년 9월 28일
r0=10.0;
z0=1.0;
a=0.1;
nu=1.0;
Gamm_inf=1000;
t=0:0.05:10;
z=z0*exp(2*a*t);
r=r0*exp(-a*t);
w=a*r.^2/(2*nu)
w0=a*r0^2/(2*nu);
theta=-Gamm_inf/(8*pi*nu)*((1./w.*(1-exp(-w))-1/w0*(1-exp(-w0)))-expint(w)-expint(w0));
[x y]=pol2cart(theta,r);
plot3(x,y,z)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by