Create a function named Local_Max.m that calculates the local maximum values of the signal by comparing the value of a sample with its immediate neighbour samples value. Give the time when the local maximums occur.

조회 수: 2 (최근 30일)
hello

답변 (1개)

Image Analyst
Image Analyst 2017년 12월 14일
Assuming you can't just put a wrapper around imregionalmax(), then I'd just put a wrapper around movmax() or imdilate(), which computes the local max (requires Image Processing Toolbox), then compare with ==.
Hint:
localMax = movmax(...... % or imdilate(...........
maxIndexes = localMax == originalSignal

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by