Shade area between two curves
Show older comments
Hello,
I'm trying to fill the area between these two curves:

I have tried to use the jbfill.m function and to create a poligon for filling it without succes:
Any idea on how to fix the problem?
Thank you in advance for your help! (ps: I attach the .mat files of x and upper and lower curves)
Accepted Answer
More Answers (2)
For example,
x=linspace(0,2).';
yhigh=(x-1).^2+1;
ylow=-x+0.5;
h=area([ylow,yhigh]);
set(h(1),'FaceColor','w','EdgeColor','none')
Image Analyst
on 14 Aug 2021
0 votes
See the FAQ, not only for this very FAQQY question but for lots of other good information too:
Categories
Find more on Lighting, Transparency, and Shading 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!
