필터 지우기
필터 지우기

2d surface plot matlab

조회 수: 6 (최근 30일)
Muhammad Faheem Awan
Muhammad Faheem Awan 2018년 7월 27일
댓글: Muhammad Faheem Awan 2018년 7월 30일
I have x1,y1,z1.... xn,yn,zn.. and at each point I have the resultant value measured by experiment. Now for each plane I want to plot a surface plot. image of scatter3 with gridpoints is attached. scatter3 gives me 3d grid.
if
scatter3(x, y,z,20,resultantvalue);
end
  댓글 수: 4
Jesus Sanchez
Jesus Sanchez 2018년 7월 27일
Hmm so you want to represent 5 different "surfaces" in only one figure. Is that right? If that is right, maybe something like:
figure
hold on
for i=1:5
mesh(X,Y,z(i,:))
end
hold off
If this is not what you intended I am sorry I think I do not understand you :(
Muhammad Faheem Awan
Muhammad Faheem Awan 2018년 7월 30일
Thanks, Sanchez, It will probably help.

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

채택된 답변

Quinten Rensen
Quinten Rensen 2018년 7월 27일
Maybe the function griddata() does the job?

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by