Borrar filtros
Borrar filtros

How to shade area of Integral

18 visualizaciones (últimos 30 días)
Pratik P
Pratik P el 24 de Sept. de 2015
Comentada: Star Strider el 25 de Sept. de 2015
Hi I have a simple function y(z) = -1*z^3+4*z^2+-5*z+2 I have the integral in range of x= 0-5. I have the plot of the graph. I would like to shade this area on the graph.
What do I do? THANKS!

Respuesta aceptada

Star Strider
Star Strider el 24 de Sept. de 2015
I’m not quite certain what you want. This shades the area between the x-axis and the value of the integral over the interval (0,5):
y = @(z) -1*z.^3+4*z.^2+-5*z+2;
x = linspace(0, 5);
inty = cumtrapz(x,y(x));
figure(1)
plot(x, inty, '-k', 'LineWidth',1)
hold on
patch([x fliplr(x)], [zeros(size(x)) fliplr(inty)], 'g')
hold off
grid
  4 comentarios
Pratik P
Pratik P el 25 de Sept. de 2015
Exactly what I was trying to do. You sir are good thanks, I owe you a Coffey or beer what ever your flavor is.
Star Strider
Star Strider el 25 de Sept. de 2015
My pleasure!
The sincerest expression of appreciation here on MATLAB Answers is what you have already done, that being your Accepting my Answer. If we ever meet, a coffee or beer together would be nice!

Iniciar sesión para comentar.

Más respuestas (1)

WAT
WAT el 24 de Sept. de 2015
It sounds like you want the area() function.

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by