Clear Filters
Clear Filters

color area between functions

2 views (last 30 days)
Nora Al Allaf
Nora Al Allaf on 28 Oct 2020
Commented: Akira Agata on 28 Oct 2020
Hi,
I have two functions g = exp(-x.^2./2) and h = x.^2-3.*x+2;
there is a region enclosed between them, between x=0 and x=3
I wanna color it using fill
how to? =)

Accepted Answer

David Hill
David Hill on 28 Oct 2020
x = -1:.01:4;
g = exp(-x.^2./2);
h = x.^2-3.*x+2;
plot(x, g, 'r', 'LineWidth', 2);
hold on;
plot(x, h, 'b', 'LineWidth', 2);
x=.43:.01:2.08;
x2 = [x, fliplr(x)];
g = exp(-x.^2./2);
h = x.^2-3.*x+2;
inBetween = [g, fliplr(h)];
fill(x2, inBetween, 'g');

More Answers (0)

Categories

Find more on MATLAB 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!