필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Searching for non maximal values

조회 수: 1 (최근 30일)
Joshua Isherwood
Joshua Isherwood 2017년 5월 22일
마감: MATLAB Answer Bot 2021년 8월 20일
Hi, I am looking at ground reaction force data and wanting to look at the maximum values of the 1st and 2nd peaks as well as finding out the time of each event. So far i have managed to use [max_value, max_position] = max (variable) for the peak with the highest value. However I'm not sure how to find the maximum value and timing of the lower peak.
As well as the maximum values I am also interested in finding the minimum value between the two peaks (see attachment). I have managed to get the value but again struggling to figure out how to get the time of the event.
Any help would be much appreciated
Josh

답변 (1개)

Jan
Jan 2017년 5월 22일
편집: Jan 2017년 5월 22일
See findpeaks . If you have determined the peak positions, you can use
[minValue, minPos] = min(Signal(peak(1):peak(2)))
to find the minimal value between two peaks.

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!