Partial shading contour area & retroactive change of elevation font size

2 views (last 30 days)
Hey
1. How do I shade an area bounded between two contour lines ?
(same as the fill option just not for the whole plot area)
2. How can I change the elevation font size using the figure plot editor after calculation was done?
thanks, nitz

Answers (1)

nitz
nitz on 17 Feb 2012
Well, I found out how to shade. It is possible to define the colors you want to show in your figure by customizing the 'colormap' for example: black & white presentation of a contour figure:
colormap([1 1 1];[0 0 0])
if you want do divide the the weight of the colors:
colormap([1 1 1];[1 1 1];[1 1 1];[0 0 0])
Hope it will be of use.
and to all matlab begginers like me: You dug, you found. believe.

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!