is there a way to obtain peak width after peak detection ?

33 ビュー (過去 30 日間)
LO
LO 2019 年 5 月 28 日
コメント済み: Star Strider 2023 年 6 月 29 日
I have used the function findpeaks to detect spikes in a signal
however I have initially used the halfprominence as width-reference
is there a way to obtain widths using half-height after such peak detection, having the peak timestamps and their amplitude values ?

採用された回答

Star Strider
Star Strider 2019 年 5 月 28 日
Not a stupid question at all.
You simply need to ask findpeaks to return them as outputs:
[pks,locs,widths,proms] = findpeaks(PeakSig,x);
See the documentation section on Peak Prominences (link) for an illustration and discussion. The ‘widths’ are defined as the full width at half of the maximum amplitude (FWHM).
  2 件のコメント
LO
LO 2019 年 5 月 28 日
thanks, I should have probably posted at the beginning the command I was using.
I know you get them as outputs. I was just wondering whether the width values (in heights) can be calculated from those values obtained using half prominence ([pks,locs,widths,proms])
or whether a new peak detection has to be made using half height.
I guess this now is the stupid question :)
Star Strider
Star Strider 2019 年 5 月 28 日
I am not certain what you are asking.
The ‘height’ (and related ‘width’) and ‘prominence’ values are different, and only loosely related, at least as I read the documentation. The Prominence (link) property seems difficult to define. I would just use the FWHM value to characterise the peaks.
In other applications, I have used both ‘widths’ and ‘proms’ to select particular peaks, defining a desired peak by ‘(width > wv) & (prom > pv)’, where ‘wv’ and ‘pv’ were values determined elsewhere in the code. Perhaps you can combine them that way.

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

その他の回答 (2 件)

Adam Danz
Adam Danz 2019 年 5 月 28 日
編集済み: Adam Danz 2019 年 5 月 28 日
Use the "halfheight" width reference. There's an example here: https://www.mathworks.com/help/signal/ref/findpeaks.html#buhd6xj
[pks,locs,w,p] = findpeaks(PeakSig,x,'Annotate','extents','WidthReference','halfheight')
  5 件のコメント
Carlos
Carlos 2023 年 6 月 29 日
Thank you so much
Star Strider
Star Strider 2023 年 6 月 29 日
My pleasure!

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


LO
LO 2019 年 5 月 28 日
I know that, thanks.
what I wanted to know is whether one could get those values without doing the peak detection again
but I guess there is no way. stupid question most likely

カテゴリ

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