ground motion velocity in matlab
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
arash
am 13 Dez. 2013
Kommentiert: Image Analyst
am 13 Dez. 2013
I have ground acceleration and i want to calculate the velocity of the accelerogram, how can i do that in matlab?
Akzeptierte Antwort
Youssef Khmou
am 13 Dez. 2013
if you have the acceleration vector , you can integrate it to get the velocity, here is a simple example :
t=0:0.1:2; % time
a=2*t; % linear acceleration
v=integral(a,0.2); % velocity
plot(a), hold on, plot(v,'r')
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Nonlinear Dynamics 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!