- It defines y as x padded with 20000 columns on both sides
- It takes the DFT of the real part of the second row of y, shifts it to 0 takes the absolute value and divides by the length of the row.
whats this line do?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
y=[zeros(10,20000),x,zeros(10,20000)];
y2=abs(fftshift(fft(real(y(2,:)))))/length(y);
thanks!!!
0 Commenti
Risposta accettata
Sean de Wolski
il 26 Mag 2011
0 Commenti
Più risposte (1)
itsik
il 26 Mag 2011
1 Commento
Sean de Wolski
il 26 Mag 2011
It zero pads x with 10x20000 zeros on each side (columnwise)
try it on a small scale
x = magic(3);
y = [zeros(3,10),x,zeros(3,5)]
Vedere anche
Categorie
Scopri di più su Fourier Analysis and Filtering in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!