필터 지우기
필터 지우기

Plot 3 with data set and one equation

조회 수: 2 (최근 30일)
Redwood
Redwood 2019년 2월 13일
댓글: Redwood 2019년 2월 13일
Dear all.
I have data set for EQ and lamda, and I have one equations about C.
I would like to make a figure using plot3 or surf. Please let me know how to to it.
Thank you very much in advance.
Sincerely yours,
J1
EQ lamda
0.7835 0.118
0.7939 0.115
0.8043 0.1121
0.8148 0.1093
0.8254 0.1066
0.8360 0.104
0.8468 0.1014
0.8577 0.0989
0.8687 0.1347
0.8799 0.1195
0.8911 0.1066
0.9024 0.0845
ep = 1;
gam1 = 0.3;
eta11 = 0.001;
eta21 = 0.003;
A = gam1+gam1*eta11-1;
C = (ep*eta11)^((gam1*eta11)/A)*EQ.^((-gam1*eta21)/A)*lamda.^(1/A);
Plot3(EQ,lamda, C);
Surf(EQ, lamda, C);

답변 (1개)

KSSV
KSSV 2019년 2월 13일
A= [ 0.7835 0.118
0.7939 0.115
0.8043 0.1121
0.8148 0.1093
0.8254 0.1066
0.8360 0.104
0.8468 0.1014
0.8577 0.0989
0.8687 0.1347
0.8799 0.1195
0.8911 0.1066
0.9024 0.0845 ] ;
EQ = A(:,1) ;
lamda = A(:,2) ;
[EQ,lamda] = meshgrid(EQ,lamda) ;
ep = 1;
gam1 = 0.3;
eta11 = 0.001;
eta21 = 0.003;
A = gam1+gam1*eta11-1;
C = (ep*eta11).^((gam1*eta11)/A)*EQ.^((-gam1*eta21)/A)*lamda.^(1/A);
surf(EQ,lamda, C);
  댓글 수: 1
Redwood
Redwood 2019년 2월 13일
Dear KSSV,
Thank you very much for your answer..
I tried to make a figure, and I found that C value are the same, there is no change at all.
I would like to fix this problem. I deeply appreciate your help again.
Sincerely yours,
J1

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

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by