Smooth edge on contour plot
4 views (last 30 days)
Show older comments
Hello,
In my contourf plot, I want to cut off values above a certain limit, 61 in this case. In the attached figure, I want to have the figure on the right to look like the figure on the left upto the 61 line. However if I set these values to either zero or nan, the edge will always be tapered. Is there a way display the edge like a smooth contour line, like all others in the figure?
Thanks in advance!
The figure on the left is created by
figure()
contourf(W_chh*10^6,W_ww*10^6,(Twout'))
colorbar
The figure on the right is created by
figure()
Twout(Twout >= 61) = nan;
contourf(W_chh*10^6,W_ww*10^6,(Twout'))
colorbar
7 Comments
Adam Danz
on 15 Jun 2020
My updated answer suggests to plot the contour lines without modifying the inputs. Then, after the contrours are plotted, remove the levels greater than your threshold.
Accepted Answer
Adam Danz
on 15 Jun 2020
Edited: Adam Danz
on 15 Jun 2020
See the 'levels' option. You could get the levels from the first controur plot and use the same levels for the 2nd plot.
[update]
Alternatively, you could produce the controur plot without the levels input and then, after plotting, remove levels greater than 61.
[~, c] = contourf(W_chh*10^6,W_ww*10^6,(Twout'));
c.LevelList(c.LevelList > 61) = [];
Then add white to the very end of your color map and set the color range so the max values are white.
ax = gca();
ax.Colormap(end,:) = 1; % Max color is now white
A potentially ugly approach would be to get the coordinates of the jagged controur line, smooth them, then replot the smoothed line.
4 Comments
More Answers (0)
See Also
Categories
Find more on Contour Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!