is there a way to put some threshold and count the number of times whenever the signal becomes above the threshold?
조회 수: 3 (최근 30일)
이전 댓글 표시
is there a way to put some threshold and count the number of times whenever the signal becomes above the threshold, and depending on the number of times it takes some decision automaticlly
댓글 수: 6
답변 (2개)
Image Analyst
2022년 12월 14일
[L, count] = bwlabel(data >= someThresholdValue)
count is the number of runs of your data at or above the threshold value.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!