integration within specified limits
10 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Walter Roberson
2021-2-16
data = readmatrix('Data.xlsx');
mask = data(:,1) >= 3 & data(:,1) <= 6;
t = data(mask,1);
x2 = data(mask,2).^2;
trapz(t, x2)
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!