integration within specified limits

2 vues (au cours des 30 derniers jours)
Sonia Goyal
Sonia Goyal le 16 Fév 2021
Commenté : Sonia Goyal le 18 Fév 2021
I have the data file attached below. I have to take the square of column no. two of this data file and then have to integrate it from time '3' sec to time '6' sec. Please help me out with this.
Thanks in advance

Réponse acceptée

Walter Roberson
Walter Roberson le 16 Fév 2021
data = readmatrix('Data.xlsx');
mask = data(:,1) >= 3 & data(:,1) <= 6;
t = data(mask,1);
x2 = data(mask,2).^2;
trapz(t, x2)
  1 commentaire
Sonia Goyal
Sonia Goyal le 18 Fév 2021
Thanks a lot.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Simulink dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by