- Q = trapz(_,dim) integrates along the dimension dim using any of the previous syntaxes.
How to integrate across row values?
1 回表示 (過去 30 日間)
古いコメントを表示
I have an array of size 180*10, and I want to find AUC score of values across rows by applying trapz function.How to make loop to integrate across rows?
0 件のコメント
採用された回答
Star Strider
2017 年 8 月 31 日
From the documentation:
So to integrate across rows, use 2 for ‘dim’.
1 件のコメント
KALYAN ACHARJYA
2017 年 9 月 1 日
編集済み: KALYAN ACHARJYA
2017 年 9 月 1 日
%
X=[ 1 2 3 4 5 7....];
Result=trapz(X,2);
% Gives Integrate result
%
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!