這個混淆可能是由於你所引用的兩個例子不同而產生的結果。請參閱下面的代碼以獲取本說明中的參考資料。
在第一個示例中,該圖是頻率範圍內的功率譜(週期圖)。請注意,在第一個曲線圖中,週期圖並未居中於0,這意味着頻率範圍似乎是奈奎斯特採樣頻率的兩倍。正如在數學工具鏈接中提到的那樣,爲了避免這種混淆(圖2),將週期圖居中爲0是很常見的做法。
對於第二個例子,採用相同的參數,原始圖是具有不同歸一化的傅立葉光譜的振幅,比第一個例子(圖3)。使用Matlab完整頻率排序的語法(如代碼中所述),將這個看起來不同的fft結果轉換爲示例1的結果是微不足道的;在圖4中複製了0中心週期圖的相同結果。
因此,具體回答你的問題,在這兩種情況下的頻率範圍是相同的,最大頻率爲奈奎斯特採樣頻率爲:瞭解如何DFFT作品
f = fs/2*linspace(0,1,NFFT/2+1);
的關鍵(同樣在Matlab中)的理解是,您只需將您的離散數據集投影到傅立葉空間,其中由matlab中的fft()函數返回的是每個頻率分量的展開係數,以及給出係數(在Matlab中如例2):
f = [f(1:end-1) -fliplr(f(1,2:end))];
瞭解更多詳細信息,請參見在DFT的維基百科頁面: https://en.wikipedia.org/wiki/Discrete_Fourier_transform
這也可能有助於您拿FFT省略長度爲2參數的功率
y = fft(x).
在這情況下,你會看到y中只有少數非零分量對應於你的輸入信號的確切係數。數學工作頁面聲稱以下作爲使用或不使用此長度的動機:
「對變換長度使用兩個冪來優化FFT算法,但實際上通常使用n的執行時間差別很小= m「。
%% First example:
% http://www.mathworks.com/help/matlab/math/fast-fourier-transform-fft.html
fs = 10; % Sample frequency (Hz)
t = 0:1/fs:10-1/fs; % 10 sec sample
x = (1.3)*sin(2*pi*15*t) ... % 15 Hz component
+ (1.7)*sin(2*pi*40*(t-2)); % 40 Hz component
% Removed the noise
m = length(x); % Window length
n = pow2(nextpow2(m)); % Transform length
y = fft(x,n); % DFT
f = (0:n-1)*(fs/n); % Frequency range
power = y.*conj(y)/n; % Power of the DFT
subplot(2,2,1)
plot(f,power,'-o')
xlabel('Frequency (Hz)')
ylabel('Power')
title('{\bf Periodogram}')
y0 = fftshift(y); % Rearrange y values
f0 = (-n/2:n/2-1)*(fs/n); % 0-centered frequency range
power0 = y0.*conj(y0)/n; % 0-centered power
subplot(2,2,2)
plot(f0,power0,'-o')
% plot(f0,sqrt_power0,'-o')
xlabel('Frequency (Hz)')
ylabel('Power')
title('{\bf 0-Centered Periodogram} Ex. 1')
%% Second example:
% http://stackoverflow.com/questions/10758315/understanding-matlab-fft-example
% Let's redefine the parameters for consistency between the two examples
Fs = fs; % Sampling frequency
% T = 1/Fs; % Sample time (not required)
L = m; % Length of signal
% t = (0:L-1)*T; % Time vector (as above)
% % Sum of a 3 Hz sinusoid and a 2 Hz sinusoid
% x = 0.7*sin(2*pi*3*t) + sin(2*pi*2*t); %(as above)
NFFT = 2^nextpow2(L); % Next power of 2 from length of y
% NFFT == n (from above)
Y = fft(x,NFFT)/L;
f = Fs/2*linspace(0,1,NFFT/2+1);
% Plot single-sided amplitude spectrum.
subplot(2,2,3)
plot(f,2*abs(Y(1:NFFT/2+1)),'-o')
title('Single-Sided Amplitude Spectrum of y(t)')
xlabel('Frequency (Hz)')
ylabel('|Y(f)|')
% Get the 0-Centered Periodogram using the parameters of the second example
f = [f(1:end-1) -fliplr(f(1,2:end))]; % This is the frequency ordering used
% by the full fft in Matlab
power = (Y*L).*conj(Y*L)/NFFT;
% Rearrange for nicer plot
ToPlot = [f; power]; [~,ind] = sort(f);
ToPlot = ToPlot(:,ind);
subplot(2,2,4)
plot(ToPlot(1,:),ToPlot(2,:),'-o')
xlabel('Frequency (Hz)')
ylabel('Power')
title('{\bf 0-Centered Periodogram} Ex. 2')
親愛的PZwan,謝謝。其實這是一個完整的答案和一個非常有用的代碼來理解你的解釋和matlab的DFT和fft的一般事情。 – Gohann
親愛的Gohann,這是我的榮幸。我很高興這對你有幫助。 – PZwan