Integration of displacement to velocity then acceleration
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Adrienne
il 15 Mag 2014
Commentato: Sean de Wolski
il 16 Mag 2014
I want to integrate this displacement vector (jh) to get velocity and then to get acceleration.
There are multiple trials of which I need to integrate from. when i do:
%%Calculation of Velocity and Acceleration
v= trapz (jh);
a= trapz (v);
this gives an output for the V but not for the A. When I do cumtrapz below:
%%Calculation of Velocity and Acceleration
v= cumtrapz (jh);
a= cumtrapz (v);
This is a cumulative integration and this is not what I want
0 Commenti
Risposta accettata
Sean de Wolski
il 15 Mag 2014
Don't you mean take the derivative of displacement with respect to time to get velocity and again for acceleration?
doc diff
4 Commenti
Sean de Wolski
il 16 Mag 2014
I would guess you would want dt to be a column vector so it's the same shape and size as x and y and you will want to have it be the change in time, not absolute time.
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!