IFFT operation on the vector
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
I want to make an ifft operation on some vector. according to help of ifft, it do not require any multipcation constant. does this statement true all the time?
댓글 수: 0
채택된 답변
Wayne King
2013년 2월 21일
편집: Wayne King
2013년 2월 21일
As long as you do not zero pad, you should get back the original vector without using any scaling factor.
x = randn(10,1);
xdft = fft(x);
y = ifft(xdft);
max(abs(x-y))
댓글 수: 0
추가 답변 (1개)
Michael Adelman
2013년 2월 21일
댓글 수: 1
Wayne King
2013년 2월 21일
Nothing, it will just add zeros at the end.
x = randn(10,1);
xdft = fft(x,16);
ifft(xdft)
참고 항목
카테고리
Help Center 및 File Exchange에서 Spectral Measurements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!