フィルターのクリア

Dividing cyclical data in array

5 ビュー (過去 30 日間)
Marc Elmeua
Marc Elmeua 2020 年 2 月 27 日
コメント済み: Marc Elmeua 2020 年 2 月 27 日
Hello,
I have acceleration data of diferent segments of a moving horse. I would like to split it so that I have a different array for each of the strides of the horse, so that I can later time normalize each stride and average them to obtain one averaged stride. I can identify each stride by locating the peaks of acceleration of the horse's foot.
Is there an elegant way to split the array in such way?
Thank you so much.

採用された回答

Mohammad Sami
Mohammad Sami 2020 年 2 月 27 日
Assuming you can get the locations of the peak, you can create an id variable.
% acc = ... m x 1 array
%locationidxofpeak = somefuntion....
strideid = zeros(length(acc),1);
strideid(locationidxofpeak) = 1;
strideid = cumsum(strideid);
% now stride id would be like [0 0 0 0 0 1 1 1 1 1 2 2 2 2 2 ....]
for i = min(strideid):max(strideid)
strideacc = acc(strideid == i);
% your code.
end
  1 件のコメント
Marc Elmeua
Marc Elmeua 2020 年 2 月 27 日
wow! this worked great! shokran

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

その他の回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by