Contour Plot gives error

조회 수: 7 (최근 30일)
Muhammad Qaisar Fahim
Muhammad Qaisar Fahim 2021년 9월 25일
댓글: Walter Roberson 2021년 9월 25일
figure
x = ICE_m_f_dot_map_temp_w; % 1*140 array of values
y = ICE_m_f_dot_map_temp_T; % 1*140 array of values
[X,Y]=meshgrid(x,y);
z = ICE_m_f_dot_map_temp; % 1*140 array of values
contour3(X,Y,z)
With the above code I am trying to plot contours but I recieve this error.
Error using contour3 (line 44)
Z must be at least a 2x2 matrix.
Error in ME7384AU21_Fahim_HW2 (line 97)
contour3(X,Y,z)

채택된 답변

Walter Roberson
Walter Roberson 2021년 9월 25일
N = 200; %grid refinement
x = ICE_m_f_dot_map_temp_w; % 1*140 array of values
y = ICE_m_f_dot_map_temp_T; % 1*140 array of values
z = ICE_m_f_dot_map_temp; % 1*140 array of values
minx = min(x); maxx = max(x);
miny = min(y); maxy = max(y);
[X, Y] = meshgrid(linspace(minx, maxx, N), linspace(miny, maxy, N));
F = scatteredInterpolant(x(:), y(:), z(:));
Z = F(X, Y);
contour3(X, Y, Z);
  댓글 수: 2
Muhammad Qaisar Fahim
Muhammad Qaisar Fahim 2021년 9월 25일
Thanks Walter but this is in 3d I want it in 2d. Here
x = ICE_m_f_dot_map_temp_w; % 1*140 array of values
Should be on x Axis
y = ICE_m_f_dot_map_temp_T; % 1*140 array of values
Should be on y Axis
z = ICE_m_f_dot_map_temp; % 1*140 array of values
I need 20 contours from these 140 values that would form a constant contour haning constant value on that particular contour
Walter Roberson
Walter Roberson 2021년 9월 25일
Your original code uses contour3 which is for 3d representation. If you want 2d then use contour() or contourf instead.

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

추가 답변 (1개)

KSSV
KSSV 2021년 9월 25일
You cannot use contour with column data. You can use scatter to plot data or if your data is gridded consider using griddata or reshaping the data as shown in the blow link:
  댓글 수: 2
Muhammad Qaisar Fahim
Muhammad Qaisar Fahim 2021년 9월 25일
Thanks KSSV. I need to plot the contour not the scatter plot. But data is given as colomn vectors. Then how could I tailor that it can be used to create contour plot?
KSSV
KSSV 2021년 9월 25일
편집: KSSV 2021년 9월 25일
I have given a link. Read that.

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

카테고리

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

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by