Peak Base width of a moving object
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/808594/image.jpeg)
TIA
0 comentarios
Respuestas (1)
Image Analyst
el 22 de Nov. de 2021
Editada: Image Analyst
el 22 de Nov. de 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)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!