findAllPeaks

版本 1.0.5 (175.4 KB) 作者: Daniel
Complements find peaks function with the possibility to find all peaks, both local maximums, and local minimums.
651.0 次下载
更新时间 2020/1/18

查看许可证

Besides complementing find peaks function with the possibility to find all peaks, both local maximums, and local minimums.
This also provides a possible workaround for the findpeaks bug pointed out by PeakProminencesBugExample.mlx file.

The output of the findAllPeaks funcition is a set of structure arrays.
Positive, negative and all peaks respectively with the following fields:
- peak
- location
- width
- prominence
- base
- isNegative
- prominenceRatio

Usage example:

x_length = 1000;
x = linspace(0,1,x_length);
PeakSig = peakSigFcn(x, x_length);

[positive, negative, all] = findAllPeaks(PeakSig,x);

figure
plot(x, PeakSig);
hold on

% Plot positive peaks in red.
plot([positive.location],[positive.peak],'v','MarkerSize',5,...
'MarkerEdgeColor','black',...
'LineStyle','none',...
'MarkerFaceColor','red')

% Plot negative peaks in green.
plot([negative.location],[negative.peak],'^','MarkerSize',5,...
'MarkerEdgeColor','black',...
'LineStyle','none',...
'MarkerFaceColor','green')

% Plot peak computed bases. Prominences fixed.
plot([all.location],[all.base],'+','MarkerSize',5,...
'MarkerEdgeColor','black',...
'LineStyle','none')

引用格式

Daniel (2024). findAllPeaks (https://www.mathworks.com/matlabcentral/fileexchange/73943-findallpeaks), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2019b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Descriptive Statistics 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.5

Example converted to mlx file.

1.0.4

Rename PeakProminencesBugExample to PeakProminencesBug

1.0.3

Fix initial and final peaks prominence and base.

1.0.2

Add feature to allow the inclusion or not of the initial or ending function values as peaks.

1.0.1

Add example files.

1.0.0