필터 지우기
필터 지우기

Contour plot for given x,y,z

조회 수: 3 (최근 30일)
Manish Kumar
Manish Kumar 2019년 3월 13일
편집: KSSV 2019년 3월 13일
Dear All,
I have x, y, and z data. I was unable to plot 2D contour. 1st column is x, 2nd column is y and 3rd column is z. Kindly help.
  댓글 수: 4
madhan ravi
madhan ravi 2019년 3월 13일
why not contour() ?
Manish Kumar
Manish Kumar 2019년 3월 13일
i have tried
contour (x,y,z)
Error is:
Error using contour (line 48)
Z must be at least a 2x2 matrix.
Error in Untitled (line 1)
contour (x,y,z)

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

채택된 답변

KSSV
KSSV 2019년 3월 13일
편집: KSSV 2019년 3월 13일
[num,txt,raw] = xlsread('Book1.xlsx') ;
x = num(:,1) ;
y = num(:,2) ;
z = num(:,3) ;
figure(1)
scatter(x,y,20,z,'filled') ; colorbar
%% Method 1 / Griddata
nx = 500 ; ny = 500 ;
[X,Y] = meshgrid(linspace(min(x),max(x),nx),linspace(min(y),max(y),ny)) ;
Z =griddata(x,y,z,X,Y) ;
figure(2)
contour(X,Y,Z) ;
figure(3)
pcolor(X,Y,Z)
shading interp
%% Method 2 simple reshaping
x = unique(x) ; nx = length(x) ;
y = unique(y) ; ny = length(y) ;
Z = reshape(z,ny,nx) ;
figure(4)
contour(x,y,Z)

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by