How to integrate across row values?

조회 수: 2 (최근 30일)
Bubblesjinx
Bubblesjinx 2017년 8월 31일
편집: KALYAN ACHARJYA 2017년 9월 1일
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?

채택된 답변

Star Strider
Star Strider 2017년 8월 31일
From the documentation:
  • Q = trapz(_,dim) integrates along the dimension dim using any of the previous syntaxes.
So to integrate across rows, use 2 for ‘dim’.
  댓글 수: 1
KALYAN ACHARJYA
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!

Translated by