How to avoid white patch in contourf ?

23 visualizaciones (últimos 30 días)
DIPANJAN DEY
DIPANJAN DEY el 23 de Mzo. de 2018
Respondida: ilya el 26 de Oct. de 2025 a las 5:21
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
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?
DIPANJAN DEY
DIPANJAN DEY el 23 de Mzo. de 2018
The middle portion of my colorbar is white due to my colormap. But the white portion in the middle of the figure is not due to the colormap and the values there are lower than -1.9. If you use a different colormap then also you can see this white region.

Iniciar sesión para comentar.

Respuestas (2)

Kelly Kearney
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
DIPANJAN DEY
DIPANJAN DEY el 23 de Mzo. de 2018
Editada: DIPANJAN DEY el 23 de Mzo. de 2018
Thanks for your help. Yes this is the plot I want it but now the x_axis reduces as we omitted the nans, also if we increase the x-axis there is straight line coming at the end. Which is in my case not acceptable. Another thing, now i am unable to move the colorbar to my desired location (other than specified). Data cursor also not showing the value, i cannot specify my line style
Kelly Kearney
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.

Iniciar sesión para comentar.


ilya
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.

Categorías

Más información sobre Color and Styling en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by