how to get x value of findpeaks

26 次查看(过去 30 天)
I use the following findpeaks method:
peaks = findpeaks(smoothed{i}, 'MinPeakHeight',0.5,...
'MinPeakDistance',200);
the peaks matrix for this contains the y values, but I would like to have the x values. How do I get these?

回答(1 个)

Davide Masiello
Davide Masiello 2022-5-18
编辑:Davide Masiello 2022-5-18
If X is your array of x-values, do
[peaks,locs] = findpeaks(smoothed{i},'MinPeakHeight',0.5,'MinPeakDistance',200);
x_peaks = X(locs);
You can find more info at

Community Treasure Hunt

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

Start Hunting!

Translated by