IFFT operation on the vector

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?

 채택된 답변

Wayne King
Wayne King 2013년 2월 21일
편집: Wayne King 2013년 2월 21일

0 개 추천

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))

추가 답변 (1개)

Michael Adelman
Michael Adelman 2013년 2월 21일

0 개 추천

and if I zero pad, what constant I need to multiply?

댓글 수: 1

Nothing, it will just add zeros at the end.
x = randn(10,1);
xdft = fft(x,16);
ifft(xdft)

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Axis Labels에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by