Contourf - How to define colors between, above and below contourlines
48 次查看(过去 30 天)
显示 更早的评论
Hello,
I have searched for a solution to this problem but couldn't find any answers.
I have X, Y, and Z data (example given below), and I want to create a contourf plot. I would like to specify the contour levels and assign specific colors to the areas between these contour lines. Additionally, I want to define colors for the regions below the lowest contour line and above the highest contour line.
I am aware of the contourfcmap function, but I want to implement these plots in MATLAB's App Designer, where using contourfcmap from MATLAB File Exchange is quite complicated.
Can anyone help me with this?
Thanks a lot!
Kind regards
Steve
Code as example:
figure
% Random-Data
x = linspace(-5, 5, 100); % x-Data
y = linspace(-5, 5, 100); % y-Data
[X, Y] = meshgrid(x, y);
sigma = 1;
Z = exp(-(X.^2 + Y.^2) / (2 * sigma^2));
% Contourlevels
contour_levels = [0.1, 0.3, 0.5, 0.7, 0.9];
contour_level_below = min(min(Z(:)),min(contour_levels))-1;
cmap = [
1 0 0; % < 0.1
0 0 1; % 0.1 - 0.3
0 0.5 0; % 0.3 - 0.5
0 1 0; % 0.5 - 0.7
1 1 0; % 0.7 - 0.9
0 0 0; % > 0.9
];
colormap(cmap)
[~, hc] = contourf(X, Y, Z, [contour_level_below, contour_levels], 'LineColor', 'k');
As you can see, with given code contourf does everything as expected. But the area between 0.1 and 0.3 isn't colored as expected (should be blue).
0 个评论
采纳的回答
Cris LaPierre
2024-10-23,18:39
编辑:Cris LaPierre
2024-10-23,18:40
I note that the documentation states the following:
"The contourf function uses the current colormap to fill the spaces between the levels in the plot. The first color fills the space between the lowest level and the level above it. The last color corresponds to Z-values that are greater than the highest level in the plot. If Z contains values that are smaller than the lowest level displayed in the plot, the region between the lowest level and the smallest Z-value is white."
My observation is that does not accurately describe what is happening. I also see different behavior depending on if I specify the number of contours vs specify the levels. I suspect it will also depend on if the step size is uniform or not.
Currently, it seems that contourf spreads the colors evenly across the range of values displayed in your chart. You can see this if you add a colorbar. So the results may be more like what you expect if you specify the number of contours because they will be evenly spaced across the range of your data.
figure
% Random-Data
x = linspace(-5, 5, 100); % x-Data
y = linspace(-5, 5, 100); % y-Data
[X, Y] = meshgrid(x, y);
sigma = 1;
Z = exp(-(X.^2 + Y.^2) / (2 * sigma^2));
% Contourlevels
contour_levels = [0.1, 0.3, 0.5, 0.7, 0.9];
contour_level_below = min(min(Z(:)),min(contour_levels))-1;
cmap = [
1 0 0; % < 0.1
0 0 1; % 0.1 - 0.3
0 0.5 0; % 0.3 - 0.5
0 1 0; % 0.5 - 0.7
1 1 0; % 0.7 - 0.9
0 0 0; % > 0.9
];
colormap(cmap)
[~, hc] = contourf(X, Y, Z, [contour_level_below, contour_levels], 'LineColor', 'k');
colorbar
Here is the workaround. To ensure your colormap behaves the way you intend, determine the smallest step size, then define your colormap across the full range using that stepsize. You also will want to set your color limits to ensure the colormap is applied as intended.
Here, the smallest stepsize is 0.1, the first step. Since you want to incorporate a color for values >0.9, set clim to [0 1]. Finally, so that values <0.1 are not white, prepend your contour_levels with -inf.
figure
% Contourlevels
contour_levels = [-inf 0.1, 0.3, 0.5, 0.7, 0.9];
cmap = [
1 0 0; % < 0.1
0 0 1; % 0.1 - 0.2
0 0 1; % 0.2 - 0.3
0 0.5 0; % 0.3 - 0.4
0 0.5 0; % 0.4 - 0.5
0 1 0; % 0.5 - 0.6
0 1 0; % 0.6 - 0.7
1 1 0; % 0.7 - 0.8
1 1 0; % 0.8 - 0.9
0 0 0; % > 0.9
];
colormap(cmap)
[~, hc] = contourf(X, Y, Z, contour_levels, 'LineColor', 'k');
clim([0 1])
colorbar
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 White 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!