shade area under curve - CDF plot

12 views (last 30 days)
C Ryan
C Ryan on 21 Aug 2017
Commented: Star Strider on 21 Aug 2017
Hi, I'm looking to shade/fill the area under the curve on a cdf plot. This is fairly simple when plotting x,y data using the area or fill function. However, I cant find a way to do it when plotting a cdf as you only use one column of data to construct the plot. Any help would be much appreciated.
Best regards, Ciara

Accepted Answer

Star Strider
Star Strider on 21 Aug 2017
I don’t understand what the problem is.
Try this:
mu = 1;
sd = 2;
x = linspace(mu-10*sd, 1.96);
CDF = normcdf(x, mu, sd);
figure(1)
area(x, CDF)
  4 Comments
C Ryan
C Ryan on 21 Aug 2017
Thank you. This is what I've been trying to do.
Star Strider
Star Strider on 21 Aug 2017
As always, my pleasure.

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D 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!