Is it possible getting x coördinates from an accelerometer measurement?

1 次查看(过去 30 天)
Hello, I have a dataset from a measurement with an accelerometer. The figure below displays the resultant vector of the X, Y and Z axis.
I would like to know if it is possible getting the x coördinates (Time in seconds) from the beginning when the signal starts getting bigger until the moment it gets back to normal. So this means the first x coördinate would be around 270 sec en the second 570 sec and so on until the end of the signal.
Until now I have done it visually because I have had only two test subjects. But it would be of great help if there is some way to do this automatically.
  2 个评论
Jan
Jan 2016-10-28
I cannot resist to mention, that the word is spelled "coordinates". Sorry, I know this does not help you to solve the problem.
Star Strider
Star Strider 2016-10-28
@Jan —
Shawn Imming is correct. The diaeresis (not umlaut) in English is placed over a second consecutive vowel to indicate that the second vowel is pronounced. The same applies, for instance, in the word naïve. (This is an obscure point that few people discover until they are corrected on their first-year undergraduate English assignments.)

请先登录,再进行评论。

采纳的回答

Massimo Zanetti
Massimo Zanetti 2016-10-28
It seems you need to threshold the values of XYZ (that I think is a vector). Fore example, fix a thereshold to T=1 (or some that you believe is reasonable) and select only the values of XYZ that are greater than T, for those elements, get the time coordinate:
T=1;
extracted_coord = x(XYZ>T)

更多回答(1 个)

Jan
Jan 2016-10-28
A simple threshold might be triggered by the noisy signal for one or two frames accidently. Therefore it would be helpful to analyse the nature of the noise at first to apply a low-pass filter. Afterwards thresholding is safer.

标签

Community Treasure Hunt

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

Start Hunting!

Translated by