FFT of Signal doesn´t work well

조회 수: 2 (최근 30일)
Cedric Burkhart
Cedric Burkhart 2021년 8월 30일
편집: Cedric Burkhart 2021년 8월 30일
Hi,
I would like to have a FFT of a constant signal with two Dirac jumps.
My signal is correct, but my FFT shows nothing. May somebody could help me?
It´s the following code:
t = [1:361] ; % in Grad, Gesamtumdrehung sind 360°
f(t(1):t(end)) = 0; % f = Signal
% Magnets
N = 23; % Amount of magnets
n = 2; % selected magnets
a = 360/n ; % distance between magnets
% Signal 1 = Dirac
tsprung = 20;
tsprung2 = tsprung + a;
f(tsprung)= 1;
f(tsprung2)= f(tsprung);
subplot(211);
plot (t,f);
xft = fft(f);
xabs = abs(xft);
subplot(212);
plot (xabs);
set(gca, 'XTick',[0:20:360])
set(gca, 'YTick',[0:0.1:1])
xlabel ('Position der Magneten in Grad');
ylabel ('Stoß');
legend ('Signal');
THANKS A LOT !

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2021년 8월 30일
xabs(2nd Plot) is the absolute of fft ??
  댓글 수: 1
Cedric Burkhart
Cedric Burkhart 2021년 8월 30일
편집: Cedric Burkhart 2021년 8월 30일
Yes it should show the absolut numbers of the fft, but if it works without the abs then it will be good as well.
I just wanna see how the frequency-spectrum is before and after the dirac jump.

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

카테고리

Help CenterFile Exchange에서 Discrete Fourier and Cosine Transforms에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by