フィルターのクリア

How to find troughs of a signal below a threshold

5 ビュー (過去 30 日間)
Leyla Elyasizad
Leyla Elyasizad 2023 年 3 月 6 日
回答済み: Star Strider 2023 年 3 月 6 日
I am trying to find troughs of a signal which are below a certain threshold
I tried findpeaks but its not working
findpeaks(-1*TrialLFP{1,iSession}(chan,:),'Threshold',sigma);
Is there any thresholding option for islocalmin function?
  1 件のコメント
Jan
Jan 2023 年 3 月 6 日
What are "throughs of a signal"? What does "is not working" mean explicitly?

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

回答 (1 件)

Star Strider
Star Strider 2023 年 3 月 6 日
Use the 'MinPeakHeight' name-value pair —
t = linspace(0, 2*pi, 500);
s = sin(2*pi*t) - sin(2*pi*0.1*t-0.45);
Threshold = -1.75;
[pks,locs] = findpeaks(-s, 'MinPeakHeight',-Threshold)
pks = 1×2
1.9576 1.9443
locs = 1×2
220 298
figure
plot(t, s)
hold on
plot(t(locs), s(locs), 'vr', 'MarkerFaceColor','r')
hold off
grid
ylim([-2.5 1.5])
yline(Threshold, '--m', 'Threshold')
.

カテゴリ

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