Area between function and polyline

Hi everyone I have a problem. I try to calculate the area between a linear function (red) and a polyline (blue). I hope someone can help me.

 Respuesta aceptada

Jan
Jan el 26 de Abr. de 2018
How are the values of the lines stored? In two vectors containing Y values to the the same X coordinates? If so:
match = (y_blue <= y_red);
Area = cumtrapz(y_red(match) - y_blue(match))

1 comentario

An Ku
An Ku el 27 de Abr. de 2018
Thank very much. :) May you have an idea how I can visualize this area in a plot?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Preguntada:

el 26 de Abr. de 2018

Comentada:

el 27 de Abr. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by