필터 지우기
필터 지우기

ground motion velocity in matlab

조회 수: 2 (최근 30일)
arash
arash 2013년 12월 13일
댓글: Image Analyst 2013년 12월 13일
I have ground acceleration and i want to calculate the velocity of the accelerogram, how can i do that in matlab?

채택된 답변

Youssef  Khmou
Youssef Khmou 2013년 12월 13일
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개)

카테고리

Help CenterFile Exchange에서 Physics에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by