how can i find the three peak points of the histogram..
1 回表示 (過去 30 日間)
古いコメントを表示
i can find 1st peak point, then how can i find the 2nd and 3rd peak of the histogram?
0 件のコメント
回答 (3 件)
Adam
2015 年 1 月 12 日
編集済み: Adam
2015 年 1 月 12 日
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 件のコメント
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 日
sort the data in descending order & take first three values
3 件のコメント
Adam
2015 年 1 月 13 日
That won't give you peaks. Quite likely it will give you the largest peak and the two values either side of it.
mouh nyquist
2015 年 1 月 15 日
you can save your histogram as a variable and then use the file (peak finder in matlab exchange file)
7 件のコメント
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
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!