- Q = trapz(_,dim) integrates along the dimension dim using any of the previous syntaxes.
How to integrate across row values?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Bubblesjinx
el 31 de Ag. de 2017
Editada: KALYAN ACHARJYA
el 1 de Sept. de 2017
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 comentarios
Respuesta aceptada
Star Strider
el 31 de Ag. de 2017
From the documentation:
So to integrate across rows, use 2 for ‘dim’.
1 comentario
KALYAN ACHARJYA
el 1 de Sept. de 2017
Editada: KALYAN ACHARJYA
el 1 de Sept. de 2017
%
X=[ 1 2 3 4 5 7....];
Result=trapz(X,2);
% Gives Integrate result
%
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!