IFFT operation on the vector

조회 수: 1 (최근 30일)
Michael Adelman
Michael Adelman 2013년 2월 21일
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일
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일
and if I zero pad, what constant I need to multiply?
  댓글 수: 1
Wayne King
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 CenterFile Exchange에서 Spectral Measurements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by