Peter Smit
Peter Smit

Reputation: 28716

How do I color part of a graph under a line in MATLAB?

I would like to have in the same figure a line plot and a part of the graph under the line colored (a confidence interval).

How can I do this in MATLAB?

I already tried the following, but it doesn't work (it only shows the area):

plot(theta, p_prior_cum)
area(theta(50:70), p_prior_cum(50:70))
axis([0  1  0  1])

Upvotes: 2

Views: 8333

Answers (1)

akosch
akosch

Reputation: 4396

You need to use hold off and hold on to retain the current graph in the figure.

Like this:

hold on
plot(theta, p_prior_cum)
area(theta(50:70), p_prior_cum(50:70))
axis([0  1  0  1])
hold off

Here is a link that describes the usage more thoroughly

Upvotes: 10

Related Questions