- Q = trapz(_,dim) integrates along the dimension dim using any of the previous syntaxes.
How to integrate across row values?
조회 수: 2 (최근 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!