Hello. How algorithm I can use for detect the start point of the fast increasing of my data and the end of this procces?

My data corrupted by some noise, I use the diff function for indicate the start point(labelled by red point on the figure), but find it only with large delay and don't know how to indicate correctly the end of increase (labelled by vertical line on the figure).

답변 (1개)

dd = diff(data);
mask = abs(dd) > SomeThreshold;
find(mask, 1, 'first')
find(mask, 1, 'last')

댓글 수: 1

It works only for well smoothing data. If I use the mooving average filter for this purpose I receive large displace for the peaks.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

질문:

2015년 12월 9일

댓글:

2015년 12월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by