Finding minima

6 views (last 30 days)
Graig
Graig on 15 Feb 2011
I have a data file with few valleys (minima). is there a way to find all the x coordinates corresponding to each minimum y value?

Accepted Answer

Matt Tearle
Matt Tearle on 15 Feb 2011
If you want fancy, take Walter's advice and search FEx. If you want quick and dirty:
x = 1:50;
y = sin(5*x);
idx = [false, y(3:end)>y(2:end-1) & y(2:end-1)<y(1:end-2), false];
xmin = x(idx)
plot(x,y,'o-',xmin,y(idx),'rx')
  7 Comments
Matt Tearle
Matt Tearle on 16 Feb 2011
Hah. Actually I just hunt the intartubes looking for places to apply logical indexing! ;)
Paulo Silva
Paulo Silva on 16 Feb 2011
Here's my 1 vote :)

Sign in to comment.

More Answers (3)

Walter Roberson
Walter Roberson on 15 Feb 2011
There is are a fair number of postings, and several Matlab File Exchange contributions, for finding peaks, which you could either modify or apply to the negative of your data.

Andrew Newell
Andrew Newell on 15 Feb 2011
There is also the Optimization Toolbox.

Graig
Graig on 15 Feb 2011
Thanks All. For me actually the 'quick and dirty' way works well, as the data are very smooth (not noisy). Seemed to me, this is what the black box 'findpeaks' contains in a better way.
  1 Comment
Matt Tearle
Matt Tearle on 16 Feb 2011
To help others who might have the same question, it would be great if you could vote for and/or accept answers that you think should be given prominence. Thanks.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!