how to extract the time interval where variables start to increase

조회 수: 2 (최근 30일)
bay rem
bay rem 2016년 2월 27일
답변: Image Analyst 2016년 2월 28일
i have a function and i plot for every moment results of this function, such the image indicate, ,and then i want to detect the moment where variables start to increase and stop increasing

답변 (1개)

Image Analyst
Image Analyst 2016년 2월 28일
Try this:
indexes = find(signal < -50);
That will tell you whenever an signal value is less than -200. If you want to find only stretches where it meets the condition for some minimum number of elements, you can use bwareaopen() to throw out short stretches.

카테고리

Help CenterFile Exchange에서 Animation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by