Integration within particular range

Dear All,
I want to integrate the x, y. I use trapz(x,y). It gives me 1000. X-range id 0 to 4.45. But how to integrate with upper limit and lower limit i.e. 2 to 3. How to do it ? x is the first column and y is the 2nd column of the attached excel sheet.

2 comentarios

Torsten
Torsten el 12 de Mzo. de 2019
x ranges from 0.3 to 4.4. How do you want to integrate from 100 to 500 ? Or do you mean the row number ?
Manish Kumar
Manish Kumar el 12 de Mzo. de 2019
i have edited the question.

Iniciar sesión para comentar.

 Respuesta aceptada

Torsten
Torsten el 12 de Mzo. de 2019

0 votos

idx = x>=2 && x<=3;
xp = x(idx);
yp = y(idx);
value = trapz(xp,yp)

3 comentarios

Manish Kumar
Manish Kumar el 12 de Mzo. de 2019
Error is coming. I am attching the scrrenshot
Torsten
Torsten el 12 de Mzo. de 2019
idx = (x>=2 & x<=3);
Manish Kumar
Manish Kumar el 12 de Mzo. de 2019
Thank you sir

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Preguntada:

el 12 de Mzo. de 2019

Comentada:

el 12 de Mzo. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by