Effacer les filtres
Effacer les filtres

Peak Base width of a moving object

3 vues (au cours des 30 derniers jours)
siri meka
siri meka le 22 Nov 2021
Modifié(e) : Image Analyst le 22 Nov 2021
Hi,
So the graph i have attached is having movement data. x axis is time. i want the start time the movement started and the end time. i want to find the average time the object was moving before it rested.
TIA

Réponses (1)

Image Analyst
Image Analyst le 22 Nov 2021
Modifié(e) : Image Analyst le 22 Nov 2021
Try something like
inMotion = yourSignal > 0; % or some small number.
startingIndexes = strfind(inMotion, [0, 1]) + 1
endingIndexes = strfind(inMotion, [1, 0])
To get the average length of time you can subtract and call mean
meanTime = mean(endingIndexes - startingIndexes)

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by