how can i find the three peak points of the histogram..
显示 更早的评论
i can find 1st peak point, then how can i find the 2nd and 3rd peak of the histogram?
回答(3 个)
doc findpeaks
if you have the Signal Processing Toolbox.
Although you don't say which histogram you are referring to.
If you don't have the Signal Processing toolbox you can search for find peaks or similar on Matlab Exchange for code that will do the same.
9 个评论
user06
2015-1-12
Image Analyst
2015-1-12
Adam
2015-1-12
Incidentally, how do you find the first peak?
user06
2015-1-13
编辑:Image Analyst
2015-1-13
Adam
2015-1-13
That gives you the largest peak, not necessarily the first peak
user06
2015-1-13
Image Analyst
2015-1-13
Did you try his original suggestion of using findpeaks()? Why not?
user06
2015-1-14
Adam
2015-1-15
The help page for findpeaks gives something like 7 or 8 examples. I haven't memorised the syntax so you might as well look at the examples yourself rather than me spend time doing it just to repeat them for you here!
Stalin Samuel
2015-1-13
0 个投票
sort the data in descending order & take first three values
mouh nyquist
2015-1-15
0 个投票
you can save your histogram as a variable and then use the file (peak finder in matlab exchange file)
7 个评论
user06
2015-1-16
mouh nyquist
2015-1-16
first have you finded the file in matlab files exchange
user06
2015-1-16
mouh nyquist
2015-1-16
see the attached file ; all the best
user06
2015-1-19
mouh nyquist
2015-1-19
编辑:mouh nyquist
2015-1-19
I think it is easy , you need to read a little :-)
Image Analyst
2015-1-19
You can use findpeaks() like Adam already told you, but you just have to invert your signal so that valleys now become peaks.
upsidedownSignal = max(signal) - signal;
theValleys = findpeaks(upsidedownSignal);
In the future, you can make this a lot faster and more effective if you attach your data so people have something to work with. See this link
类别
在 帮助中心 和 File Exchange 中查找有关 Descriptive Statistics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!