フィルターのクリア

How to integrate data points?

49 ビュー (過去 30 日間)
Mahmoud
Mahmoud 2015 年 3 月 13 日
Hello guys, I have a set of 1220 points for acceleration vs time and I want to plot velocity vs time and displacement vs time. As you all know I should integrate acceleration in order to get the velocity, I was thinking about using the Trapezoidal rule however it will give me the total velocity but what I want is the velocity vs time (like point by point). Any idea how I can do that using Matlab? I don't want a Matlab ready function to do that. Like while or for loop are fine.
Thanks in advance
  2 件のコメント
Abhishek Madan
Abhishek Madan 2020 年 6 月 10 日
Hi ,
Can u please share the script which u used to solve this?
Thanks
NUR AINA NAJIHA ABD MANAN
NUR AINA NAJIHA ABD MANAN 2020 年 6 月 22 日
yes .. please help me also, to convert accelerometer data to displacement

サインインしてコメントする。

採用された回答

Star Strider
Star Strider 2015 年 3 月 13 日
Use the cumtrapz function.
For example:
a = acceleration_vector_from_file;
t = time_vector_from_file;
v = cumtrapz(t, a); % Velocity
c = cumtrapz(t, v); % Displacement

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by