Extracting specific portions of acceleromeetr signal
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dear collouges
I have an acceleration signal with period of wiggling (resulted from motion) and periods of silent. I would like to extrcat the data points that show the motion and save them in a matrix or vector. Attached is a .mat file with data of the x-axis from my accelerometer.
I appreciate if you help me with this
Thank you
0 commentaires
Réponse acceptée
KSSV
le 12 Fév 2019
load('accx.mat') ;
tol = 0.1 ; % can be varied
idx = abs(accx)>tol ;
plot(accx(idx))
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Sensors and Transducers dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!