- You can adjust “polyX” and “polyY” according to your mesh layout.
- The “inpolygon” function checks whether each point in your interpolation grid lies inside the valid domain.
- Setting ZI(~in) = NaN ensures MATLAB ignores the invalid triangular region during contour plotting.
3 column vector countourf plot error
조회 수: 9 (최근 30일)
이전 댓글 표시
I have a 3 column vector. I plot a contourf colormap but i have an error as i show below.

Here is my code:
xi=linspace(min(x),max(x),300);
yi=linspace(min(y),max(y),300);
[XI YI]=meshgrid(xi,yi);
ZI = griddata(x,y,z,XI,YI);
figure
contourf(XI,YI,ZI,'edgecolor','none')
colormap(flipud(jet(10)))
shading interp
colorbar
title('X MOMENT','FontSize',14)
grid on
grid minor
hold on;scatter(x,y,'k','filled');
hold off
Plot shape must be as the plan in 2nd pic above. How can i fix this? I dont want to plot the area which i show in the 1st pic.
x and y, point coordinates
z, moment value.
댓글 수: 0
답변 (1개)
Riya
2025년 4월 22일
Hi,
I understand that you want to plot the figure without the triangular region specified in the first image.
For this, you can mask out that region using a custom polygon with “inpolygon” function. This way, you retain full control over which parts of the contour map are visible, ensuring that it matches with your second image.
You can consider updating your code like this:
xi = linspace(min(x), max(x), 300);
yi = linspace(min(y), max(y), 300);
[XI, YI] = meshgrid(xi, yi);
ZI = griddata(x, y, z, XI, YI);
% Define a polygon to exclude the top-right triangular area
% This creates a mask that only includes valid plotting region
polyX = [0 0 12 12 10]; % x-coordinates of the polygon
polyY = [0 12 12 10 12]; % y-coordinates of the polygon
% Create mask
in = inpolygon(XI, YI, polyX, polyY);
ZI(~in) = NaN; % Set values outside the polygon to NaN (will not be plotted)
% Plot the contour
figure
contourf(XI, YI, ZI, 'edgecolor', 'none')
colormap(flipud(jet(10)))
shading interp
colorbar
title('X MOMENT', 'FontSize', 14)
grid on
grid minor
hold on
scatter(x, y, 'k', 'filled');
hold off
For more details about inpolygon, you can refer to the following documentation:
web(fullfile(docroot, 'matlab/ref/inpolygon.html'))
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Color and Styling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!