"Subscript indices must either be real positive integers or logicals" error while using trapz function
Afficher commentaires plus anciens
Hello, I am using following code to calculate area under the peak.
D = amplitude(:);
l = 59;
chg(1) = 1;
chg(2) = l;
for k1 = 1:numel(chg)-1
segment_area_1k1(a,j) = trapz(chg(k1:k1+1), D(chg(k1:k1+1)));
end
end
The code upon run shows error "subscript indices must either be real positive integers or logicals". I have attached amplitude data for reference. Can anyone solve this problem?
Réponses (2)
Ameer Hamza
le 19 Mai 2018
Modifié(e) : Ameer Hamza
le 19 Mai 2018
What are the values of a and j? They must be a positive integer. Also if you just want to calculate the area under the curve, then pass an entire vector to trapz()
area = trapz(D);
If you want to get segmented area, you can avoid for loop altogether. A better approach is to do it like this
segmentedArea = diff(cumtrapz(D))
4 commentaires
ishita agrawal
le 19 Mai 2018
Modifié(e) : ishita agrawal
le 19 Mai 2018
Ameer Hamza
le 19 Mai 2018
In that case, it is quite strange, because your code works fine with positive values of a and j when I run it. Have you tried the functions I wrote in my answer.
ishita agrawal
le 19 Mai 2018
Image Analyst
le 19 Mai 2018
Give your complete code, including the code where you read in the data file, and your complete error message, including line numbers and ALL the red text.
Image Analyst
le 19 Mai 2018
0 votes
Catégories
En savoir plus sur Numerical Integration and Differentiation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!