Finding coordinates of peaks

1 回表示 (過去 30 日間)
A
A 2012 年 6 月 7 日
Hello,
I have a data file that looks like this: http://imageshack.us/photo/my-images/26/peakds.jpg/ and I would like to return the position of the two highest peaks. Does anyone have any neat ways of doing this?
Thanks,
  2 件のコメント
A
A 2012 年 6 月 7 日
Ideally, I would like to smooth out this curve. I am currently looking for functions to do this, any advice would be greatly appreciated.
A
A 2012 年 6 月 7 日
Solved the problem, used http://www.mathworks.com/matlabcentral/fileexchange/17986

サインインしてコメントする。

回答 (1 件)

Kevin Sharp
Kevin Sharp 2012 年 6 月 7 日
You need to first perform non-maximal suppression and then sort the remaining data.
Try this ...
x = 1:100;
data= sin(.2*x+1)+sin(.5*x+2)+sin(.7*x+3);
figure;
plot(data,'b-');
hold on;
%non-maximal suppression
data(ordfilt2(data,3,[1 1 1])>data) = 0;
%sort data
[v,i] = sort(data,'descend');
plot(i(1:2),v(1:2),'rx')

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by