Smooth edge on contour plot

4 views (last 30 days)
Lars Peters
Lars Peters on 15 Jun 2020
Commented: Adam Danz on 15 Jun 2020
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
Lars Peters
Lars Peters on 15 Jun 2020
The same questions holds for this figure, I don't know the values in this case, just the matrix index of the part that needs to be cut off, which I did. Maybe this clears the confusion.
Adam Danz
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.

Sign in to comment.

Accepted Answer

Adam Danz
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.
Also see caxis() to control the color limits so that they match between the two axes.
[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
Lars Peters
Lars Peters on 15 Jun 2020
Edited: Lars Peters on 15 Jun 2020
Thank You!
Adam Danz
Adam Danz on 15 Jun 2020
Glad I could help.

Sign in to comment.

More Answers (0)

Categories

Find more on Contour Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!