How to avoid white patch in contourf ?
23 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am facing a problem from quite a long time. My data range is beyond my colorbar limit. That is why when the minimum value exceeded the colorbar limit it is coming white but it is okay for maximum value. How to solve this? In python something like extend = both works but what about MATLAB?
PS: I don't want to extend my colorbar limit.
8 comentarios
Image Analyst
el 23 de Mzo. de 2018
You say "when the minimum value exceeded the colorbar limit it is coming white" however, the minimum value (according to the colors) seems to be -1.9. However not all values that exceed your minimum value are white. I see values showing up as red and blue also. In fact, it seems like the only values showing up as white are around the range -0.1 to +0.1.
Anyway, let's assume you want that range to be some color other than white. You can just set the middle of the colormap to that color. What color do you want it to be?
Respuestas (2)
Kelly Kearney
el 23 de Mzo. de 2018
Matlab's contourf function doesn't actually plot contour faces for lower-than-lowest-clevel regions when are unenclosed. (And for that matter, what it does with enclosed lower-than-lowest-clevel regions varies between Matlab versions).
I think my contourfcmap function with the calccontour option should be able to create the plot the way you'd like it.
Alternatively, you can set your axis color to match the lowest value in your colormap... that way empty contour regions will appear the correct color.
4 comentarios
Kelly Kearney
el 26 de Mzo. de 2018
I'm working on a fix to the NaN issue... may take a day or two. The colorbar enhancement is one that's been on my to-do list for a while... I'll see if I have time for that one as well, but no promises.
You can specify the line style by saving the handles structure (first output of contourfcmap) and then applying any changes you'd like.
Not sure about the data cursor thing... I don't use that myself. If it relies on interacting with a contourgroup object, then that's not really something I can offer, since my function uses simple patches and lines.
ilya
el 26 de Oct. de 2025 a las 5:21
You're probably not still looking for a fix for this, but for anyone having the same issue in 2025:
This is because if you set limits on contourf, it will not assign a color to any values below the minimum. This is dumb, so to fix it, let's say you have:
[x, y] = meshgrid(-1:0.1:1, -1:0.1:1); % x-y plane from -1 to 1
lvls = linspace(0.3, 1, 10); % contours from 0.3 to 1\
data = x.^2 + y.^2; % data varies from 0 to 2 (plug in x,y to test)
contourf(x, y, data, lvls)
You'll notice areas above 1 are shaded but areas below 0.3 are not. If you add an extra sublevel to lvls that corresponds to the minimum of your data and then use clim to tighten your axes back to the original bounds, you'll see the area below 0.3 is now shaded:
[x, y] = meshgrid(-1:0.1:1, -1:0.1:1);
lvls = linspace(0.3, 1, 10);
data = x.^2 + y.^2;
lvls = [min(data(:)), lvls]; % add the min of data to the beginning of lvls
contourf(x, y, data, lvls)
clim([lvls(2) lvls(end)]) % reset colorbar axes to original bounds
No need to download any extra functions or anything.
0 comentarios
Ver también
Categorías
Más información sobre Color and Styling en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


