File:DFT zero-padding technique example (2N) - DFT.pdf
From Wikimedia Commons, the free media repository
Jump to navigation
Jump to search
Size of this JPG preview of this PDF file: 800 × 599 pixels. Other resolutions: 320 × 240 pixels | 640 × 479 pixels | 1,024 × 767 pixels | 1,162 × 870 pixels.
Original file (1,162 × 870 pixels, file size: 5 KB, MIME type: application/pdf)
File information
Structured data
Captions
DescriptionDFT zero-padding technique example (2N) - DFT.pdf |
English: Example of zero-padding technique for the Discrete Fourier Transform (DFT): DFT of the gate sequence with .
Italiano: Esempio di tecnica di aggiunta degli zeri per la trasformata di Fourier discreta (DFT): DFT della sequenza porta con . |
|||
Date | ||||
Source | Own work | |||
Author | Luca Ghio | |||
Permission (Reusing this file) |
|
|||
gnuplot source InfoField | click to expand
N=10;
n=[0:N-1]
x=[ones(1,N)];
y=fft(x,length(x));
figure
set (gca,'FontSize',14)
stem(n,x)
xlabel('n')
ylabel('x(n)')
axis([0 N-1 -0.5 1.5])
grid on
figure
set (gca,'FontSize',14)
stem(n,abs(y),'o')
xlabel('n')
ylabel('|X(k)|')
axis([0 N-1 -1 11])
grid on
N=10;
N1=2*N;
x=[ones(1,N) zeros(1,N1-N)];
n=[0:N1-1];
y=fft(x,length(x));
figure
set (gca,'FontSize',14)
stem(n,x)
xlabel('n')
ylabel('x(n)')
axis([0 N1-1 -0.5 1.5])
grid on
figure
set (gca,'FontSize',14)
stem(n,abs(y),'o')
xlabel('k')
ylabel('|X_z(k)|')
axis([0 N1-1 -1 11])
grid on
N=10;
N1=4*N;
x=[ones(1,N) zeros(1,N1-N)];
n=[0:N1-1];
y=fft(x,length(x));
figure
set (gca,'FontSize',14)
stem(n,x)
xlabel('n')
ylabel('x(n)')
axis([0 N1-1 -0.5 1.5])
grid on
figure
set (gca,'FontSize',14)
stem(n,abs(y),'o')
xlabel('k')
ylabel('|X_z(k)|')
axis([0 N1-1 -1 11])
grid on
N=10;
N1=1000;
x=[ones(1,N) zeros(1,N1-N)];
n=[0:N1-1];
y=fft(x,length(x));
f=n/N1;
figure
set (gca,'FontSize',14)
plot(f,abs(y))
xlabel('f')
ylabel('|X(e^{j2\pi f})|')
axis([0 1 -1 11])
grid on
|
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 20:52, 22 January 2017 | 1,162 × 870 (5 KB) | Luca Ghio (talk | contribs) | {{Information |Description= {{en|Example of zero-padding technique for the Discrete Fourier Transform (DFT): DFT <math>X(k)</math> of the gate sequence <math>x \left( n \right) = \begin{cases} 1 & 0 \leq n \leq N - 1 \\ 0 & n \geq N \end{cases}</math>... |
You cannot overwrite this file.
File usage on Commons
The following 2 pages use this file:
File usage on other wikis
The following other wikis use this file:
- Usage on it.wikibooks.org
Metadata
This file contains additional information such as Exif metadata which may have been added by the digital camera, scanner, or software program used to create or digitize it. If the file has been modified from its original state, some details such as the timestamp may not fully reflect those of the original file. The timestamp is only as accurate as the clock in the camera, and it may be completely wrong.
Software used | TeX |
---|---|
Conversion program | pdfTeX-1.40.16 |
Encrypted | no |
Page size | 558 x 418 pts |
Version of PDF format | 1.5 |