matlab中fftshift是什么意思
fftshift的作用正是讓正半軸部分和負半軸部分的圖像分別關(guān)于各自的中心對稱,。因為直接用fft得出的數(shù)據(jù)與頻率不是對應(yīng)的,,fftshift可以糾正過來以下是matlab的幫助文件中對fftshift的說明:Y = fftshift(X) rearranges the outputs of fft, fft2, and fftn by moving the zero-frequency component to the center of the array. It is useful for visualizing a Fourier transform with the zero-frequency component in the middle of the spectrum. For vectors, fftshift(X) swaps the left and right halves of X. 例子如下:clear;clc;t=0:0.001:2;n=2001;Fs=1000;Fc=200;x=cos(2*pi*Fc*t);y1=fft(x);y2=fftshift(y1);f=(0:2000)*Fs/n-Fs/2;hold on;plot(f,abs(y1),'r') plot(f,abs(y2),'b')
相關(guān)推薦
便查問答是一款實用的網(wǎng)絡(luò)熱門知識問答平臺,專注于分享你不知道的知識,、經(jīng)驗及生活問題,,在這里所有人都能找到答案歡迎網(wǎng)友參與討論。