how to color in between curves the two graphs?

2 visualizaciones (últimos 30 días)
KOTTEASWARAN V
KOTTEASWARAN V el 28 de Feb. de 2021
Respondida: Star Strider el 28 de Feb. de 2021

Respuestas (1)

Star Strider
Star Strider el 28 de Feb. de 2021
It’s not possible to run images of code, especially images of incomplete code.
Try this example:
x1 = linspace(-0.1, -10, 35);
y1 = 10./x1;
x2 = linspace(-0.1, -10, 30);
y2 = 15./x2;
figure
plot(x1, y1)
axis([-10 10 -10 10])
hold on
plot(x2, y2)
fill([x1 fliplr(x2)], [y1 fliplr(y2)],'g')
plot([0 0], ylim, '-k')
plot(xlim, [0 0], '-k')
hold off
.

Categorías

Más información sobre Specifying Target for Graphics Output en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by