What is the interpretation of trapz(x,cumtrapz(x,y))?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Burke Rosen
el 3 de Nov. de 2017
Respondida: Walter Roberson
el 3 de Nov. de 2017
x = (-12:12);
y = zeros(1,numel(x));
y(12:14) = 0.33;
z = trapz(x,cumtrapz(x,y));
edit: Alternatively what does the integral of a cumulative integral mean?
Respuesta aceptada
Walter Roberson
el 3 de Nov. de 2017
It would effectively be a double integration over the same domain
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Numerical Integration and Differentiation en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!