Integration over elapsed time
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Aswas
am 12 Okt. 2015
Kommentiert: Aswas
am 12 Okt. 2015
I have elapsed time and want to find velocity:(ie time would then be :[0 1 2 3 4 5 6]), any way to do this please, as following code only works when time is specified in increments:
etime = [0 1 1 1 1 1 1]; % elapsed time in sec
a = [0,2,4,7,11,17,24]; %acceleration in m/s^2
v(1)=0;
for k=1:6
v(k+1) = trapz(etime(k:k+1), a(k:k+1))+ v(k);
end
disp([v'])
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Clocks and Timers finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!