Find Peaks in an FFT without Signal Processing Toolbox

18 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2017 年 10 月 10 日
回答済み: MathWorks Support Team 2017 年 10 月 27 日
I have an FFT and I would like to find the peaks but I do not have the Signal Processing Toolbox. I know the 'findpeaks' function does what I want but is there a way to achieve this without the toolbox? 

採用された回答

MathWorks Support Team
MathWorks Support Team 2017 年 10 月 10 日
While this may not yield the exact same functionality as 'findpeaks', a new function introduced in R2017b 'islocalmax' should have similar functionality. 
https://www.mathworks.com/help/matlab/ref/islocalmax.html
If you take a look at the example below, I have provided some code below that is identical to the first part of the example using 'islocalmax': 
https://www.mathworks.com/help/signal/ref/findpeaks.html#bufhyo1-1
load sunspot.dat
year = sunspot(:,1);
avSpots = sunspot(:,2);
m = islocalmax(avSpots);
plot(year,avSpots);
hold on;
plot(year(m), avSpots(m), '*');
'islocalmax' does not have the exact functionality as 'findpeaks' but should suffice in some use cases. 

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

タグ

タグが未入力です。

製品


リリース

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by