When we apply fourier transform over a signal will i get same power or energy signal as i get in time domain?

Answers (1)

If you normalize appropriately, then yes. E.g.,
>> x=rand(1,5);
>> norm(x)
ans =
1.6536
>> norm(fft(x)/sqrt(numel(x)))
ans =
1.6536

Products

Asked:

on 12 Sep 2013

Community Treasure Hunt

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

Start Hunting!