필터 지우기
필터 지우기

Fourier-Frequency analyse

조회 수: 1 (최근 30일)
Robin Beene
Robin Beene 2012년 1월 20일
I need to do next: Draw a frequency image of following signal: t=0:0.0001:0.05; y=square(5*pi*50*t);
also it's required to draw real and imaginary part of frequency spectrum.
There is mine solution, so can anyone check it out
t=0:0.0001:0.05; y=square(5*pi*50*t); N=length(t); deltaf=1/0.05; f=(0:N-1)*deltaf;
disp('Efektivna vrijednost') Yef=sqrt(sum(y.*y)/N)
disp('Frekvencijska slika') F=(fft(y))*2/N;
figure, plot(f,F) axis([0 1200 -0.5 1])
figure, subplot(3,1,1)
plot(f,20*log10(real(F)/max(abs(F)))) axis([0 1200 -80 10])
subplot(3,1,2) plot(f,20*log10(imag(F)/max(abs(F)))) axis([0 1200 -80 10])
subplot(3,1,3) plot(f,20*log10(F/max(abs(F)))) axis([0 1200 -80 10])

채택된 답변

Robin Beene
Robin Beene 2012년 1월 20일
Hey, It shows error here: y_freq = fftshift(fft(y))*dt;
because matrix dimensions doesn't agree here: f = -Nyq : df : Nyq;
I bypass that somehow, and I saw that our sinals in frequency spectrum looks exactly the same(I draw it without logarithm scale and for positive frequencies, thats why I multiply with 2 here F=(fft(y))*2/N;), but only difference is that ur values are 20 times smaller, for same frequency u get 20 times lower amplitudes. Why?
  댓글 수: 1
Dr. Seis
Dr. Seis 2012년 1월 20일
Sorry, made a mistake when writing my example code. Try with the changes above. It will work better if you have an even time series.
You multiply the amplitudes in the frequency domain by "dt" because the FFT assumes your sample rate is unity (i.e, 1 sample per second). Therefore, the discrete integral that is calculated during the FFT is off by a factor of 1/dt (the area under a discrete section of curve is effectively the height*width, where height is amplitude and width is the number of seconds between each sample).

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

추가 답변 (3개)

Dr. Seis
Dr. Seis 2012년 1월 20일
You need to make a few changes:
If,
dt = 0.0001;
t = 0:dt:(0.05-dt);
N = length(t);
y_time = square(5*pi*50*t);
Then,
df = 1 / (N*dt);
Nyq = 1 / (2*dt);
f = -Nyq : df : Nyq-df;
y_freq = fftshift(fft(y_time))*dt;
Now you can plot the correct amplitudes with the correct frequencies:
plot(f,real(y_freq),'b-',f,imag(y_freq),'r-');
  댓글 수: 1
Robin Beene
Robin Beene 2012년 1월 20일
Thank You very much

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


Robin Beene
Robin Beene 2012년 1월 20일
I thought I need to divide it with N=length(y_time)[because Amplitudes seems to me more realistic] not to multiply with dt but I guess I was wrong.
  댓글 수: 1
Dr. Seis
Dr. Seis 2012년 1월 20일
Think of Parseval's theorem, the energy in the time domain is equal to the energy in the frequency domain. If this condition is not met, then it is a flag that something has gone wrong.

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


Robin Beene
Robin Beene 2012년 1월 20일
And One more question if I may: How to draw it on logarithmic scale
maybe like this? plot(f,20*log10(imag(y_freq)/max(abs(y_freq))),'r-');
  댓글 수: 2
Dr. Seis
Dr. Seis 2012년 1월 20일
To have just the y-axis plotted on logarithmic scale, try:
semilogy(f, imag(y_freq));
If you want just the x-axis plotted on logarithmic scale, then:
semilogx(f, imag(y_freq));
If you want x- and y-axis plotted on logarithmic scale, then:
loglog(f, imag(y_freq));
Robin Beene
Robin Beene 2012년 1월 20일
thx a lot

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

카테고리

Help CenterFile Exchange에서 Get Started with Signal Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by