- 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 (최근 30일)
이전 댓글 표시
y=[zeros(10,20000),x,zeros(10,20000)];
y2=abs(fftshift(fft(real(y(2,:)))))/length(y);
thanks!!!
댓글 수: 0
채택된 답변
Sean de Wolski
2011년 5월 26일
댓글 수: 0
추가 답변 (1개)
itsik
2011년 5월 26일
댓글 수: 1
Sean de Wolski
2011년 5월 26일
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)]
참고 항목
카테고리
Help Center 및 File Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!