What is the interpretation of trapz(x,cumtrapz(x,y))?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Burke Rosen
il 3 Nov 2017
Risposto: Walter Roberson
il 3 Nov 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?
Risposta accettata
Walter Roberson
il 3 Nov 2017
It would effectively be a double integration over the same domain
0 Commenti
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!