Finding the spectrums of three segments of a signal without using the 'fiindpeaks' function?

1 回表示 (過去 30 日間)
Hannah Oduntan
Hannah Oduntan 2019 年 1 月 9 日
コメント済み: TADA 2019 年 1 月 11 日
How can I find the spectrums of the segment of the signal before the major peak, after the major peak and othe spectrum of the major peak all separately? Doing all this without using the findpeaks function. The signal link has been attached.

回答 (2 件)

TADA
TADA 2019 年 1 月 9 日
編集済み: TADA 2019 年 1 月 9 日
There can be quite a few approaches to do this
A simple yet effective method would be to analyze the slope, you can start by finding the peak location by finding the maximum signal value (granted this is a single peak signal)
then you can detect the edges of the peak by tracing changes to the slope from positive to negative
If the signal may contain more than one peak, you can use the maximal changes in the slope to locate the peak locations as well.
you can use that as a starting point:
x = 1:length(Signal);
y = Signal;
peakIdx = find(y == max(y));
dy = diff(y);
peakStart = find(dy(1:peakIdx-1) < 0, 1, 'last');
peakEnd = find(dy(peakIdx:end) > 0, 1, 'first') + peakIdx;
plot(x(1:peakStart), y(1:peakStart), '-b',...
x(peakStart:peakEnd), y(peakStart:peakEnd), '-g', ...
x(peakEnd:end), y(peakEnd:end), '-r');
  4 件のコメント
Hannah Oduntan
Hannah Oduntan 2019 年 1 月 11 日
Yes, the frequency spectrum.

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


Sean de Wolski
Sean de Wolski 2019 年 1 月 9 日
編集済み: Sean de Wolski 2019 年 1 月 11 日
doc pwelch
doc islocalmax
doc islocalmin

カテゴリ

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