File:Fourier transform, Fourier series, DTFT, DFT.gif
頁面內容不支援其他語言。
外觀
預覽大小:800 × 477 像素。 其他解析度:320 × 191 像素 | 640 × 381 像素 | 1,128 × 672 像素。
原始檔案 (1,128 × 672 像素,檔案大小:59 KB,MIME 類型:image/gif)
摘要
描述Fourier transform, Fourier series, DTFT, DFT.gif |
English: A Fourier transform and 3 variations caused by periodic sampling (at interval T) and/or periodic summation (at interval P) of the underlying time-domain function. |
|||||
日期 | ||||||
來源 | 自己的作品 | |||||
作者 | Bob K | |||||
授權許可 (重用此檔案) |
我,本作品的著作權持有者,決定用以下授權條款發佈本作品:
|
|||||
其他版本 |
File:Variations_of_the_Fourier_transform.tif, Derivative works of this file: Fourier transform, Fourier series, DTFT, DFT.svg,
|
|||||
GIF開發 InfoField | 本GIF 點陣圖使用LibreOffice創作。 |
|||||
Octave/gnuplot source InfoField | click to expand
This graphic was created with the help of the following Octave script: pkg load signal
graphics_toolkit gnuplot
%=======================================================
% Consider the Gaussian function e^{-B (nT)^2}, where B is proportional to bandwidth.
T = 1;
% Choose a relatively small bandwidth, so that one cycle of the DTFT approximates a true Fourier transform.
B = 0.1;
N = 1024;
t = T*(-N/2 : N/2-1); % 1xN
y = exp(-B*t.^2); % 1xN
% The DTFT has a periodicity of 1/T=1. Sample it at intervals of 1/8N, and compute one full cycle.
% Y = fftshift(abs(fft([y zeros(1,7*N)])));
% Or do it this way, for comparison with the sequel:
X = [-4*N:4*N-1]; % 1x8N
xlimits = [min(X) max(X)];
f = X/(8*N);
W = exp(-j*2*pi * t' * f); % Nx1 × 1x8N = Nx8N
Y = abs(y * W); % 1xN × Nx8N = 1x8N
% Y(1) = SUM(n=1,2,...,N): { e^(-B × t(n)^2) × e^(-j2π ×-4096/8N × t(n)) }
% Y(2) = SUM(n=1,2,...,N): { e^(-B × t(n)^2) × e^(-j2π ×-4095/8N × t(n)) }
% Y(8N) = SUM(n=1,2,...,N): { e^(-B × t(n)^2) × e^(-j2π × 4095/8N × t(n)) }
Y = Y/max(Y);
% Resample the function to reduce the DTFT periodicity from 1 to 3/8.
T = 8/3;
t = T*(-N/2 : N/2-1); % 1xN
z = exp(-B*t.^2); % 1xN
% Resample the DTFT.
W = exp(-j*2*pi * t' * f); % Nx1 × 1x8N = Nx8N
Z = abs(z * W); % 1xN × Nx8N = 1x8N
Z = Z/max(Z);
%=======================================================
hfig = figure("position", [1 1 1200 900]);
x1 = .08; % left margin for annotation
x2 = .02; % right margin
dx = .05; % whitespace between plots
y1 = .08; % bottom margin
y2 = .08; % top margin
dy = .12; % vertical space between rows
height = (1-y1-y2-dy)/2; % space allocated for each of 2 rows
width = (1-x1-dx-x2)/2; % space allocated for each of 2 columns
x_origin1 = x1;
y_origin1 = 1 -y2 -height; % position of top row
y_origin2 = y_origin1 -dy -height;
x_origin2 = x_origin1 +dx +width;
%=======================================================
% Plot the Fourier transform, S(f)
subplot("position",[x_origin1 y_origin1 width height])
area(X, Y, "FaceColor", [0 .4 .6])
xlim(xlimits);
ylim([0 1.05]);
set(gca,"XTick", [0])
set(gca,"YTick", [])
ylabel("amplitude")
%xlabel("frequency")
%=======================================================
% Plot the DTFT
subplot("position",[x_origin1 y_origin2 width height])
area(X, Z, "FaceColor", [0 .4 .6])
xlim(xlimits);
ylim([0 1.05]);
set(gca,"XTick", [0])
set(gca,"YTick", [])
ylabel("amplitude")
xlabel("frequency")
%=======================================================
% Sample S(f) to portray Fourier series coefficients
subplot("position",[x_origin2 y_origin1 width height])
stem(X(1:128:end), Y(1:128:end), "-", "Color",[0 .4 .6]);
set(findobj("Type","line"),"Marker","none")
xlim(xlimits);
ylim([0 1.05]);
set(gca,"XTick", [0])
set(gca,"YTick", [])
ylabel("amplitude")
%xlabel("frequency")
box on
%=======================================================
% Sample the DTFT to portray a DFT
FFT_indices = [32:55]*128+1;
DFT_indices = [0:31 56:63]*128+1;
subplot("position",[x_origin2 y_origin2 width height])
stem(X(DFT_indices), Z(DFT_indices), "-", "Color",[0 .4 .6]);
hold on
stem(X(FFT_indices), Z(FFT_indices), "-", "Color","red");
set(findobj("Type","line"),"Marker","none")
xlim(xlimits);
ylim([0 1.05]);
set(gca,"XTick", [0])
set(gca,"YTick", [])
ylabel("amplitude")
xlabel("frequency")
box on
|
在此檔案描寫的項目
描繪內容
著作權狀態 繁體中文 (已轉換拼寫)
保有知識產權並由其所有者公開於公有領域 繁體中文 (已轉換拼寫)
2 8 2014
多媒體型式 繁體中文 (已轉換拼寫)
image/gif
檔案歷史
點選日期/時間以檢視該時間的檔案版本。
日期/時間 | 縮圖 | 尺寸 | 用戶 | 備註 | |
---|---|---|---|---|---|
目前 | 2019年8月23日 (五) 14:18 | 1,128 × 672(59 KB) | Bob K | re-color the portion of the DFT that is computed by the FFT | |
2014年8月2日 (六) 13:43 | 1,348 × 856(71 KB) | Bob K | User created page with UploadWizard |
檔案用途
下列2個頁面有用到此檔案:
全域檔案使用狀況
以下其他 wiki 使用了這個檔案:
- ar.wikipedia.org 的使用狀況
- ca.wikipedia.org 的使用狀況
- el.wikipedia.org 的使用狀況
- et.wikipedia.org 的使用狀況
隱藏分類: