I want to mirror my signal over the y axis and make 4 repetitions of it
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Iztok Grof
am 15 Jan. 2021
Beantwortet: Prudhvi Peddagoni
am 18 Jan. 2021
Hello
I am trying to show that the frequency specter of a signal repeats itself. I wrote a code which samples a signal and plots its frequency specter, but it only shows the specter from 0 onwards (half the signal), and only 1 repetition.
I wish for it to be symetric over the y axis and repeat itself, something in this style:(pardon my symplisti drawing)
this is my code:
Fs=1e6; %%%% frequency of sampling
t=0:1/Fs:0.001;
f=10000;
x=0.5*(square(2*pi*f*t)+1);
nfft=1024;
X=fft(x,nfft);
X=X(1:nfft/2);
mx=abs(X);
f=(0:nfft/2-1)*Fs/nfft;
subplot(212)
plot(f,mx), title('Freq. Spekter, Fs = 1MHz'), xlabel('frekvenca (Hz)'), ylabel('moč')
grid on
Thanks
0 Kommentare
Akzeptierte Antwort
Prudhvi Peddagoni
am 18 Jan. 2021
Hi,
After calling the fft function, you are removing half of the values from variable X. That is the reason you are not seeing symmetry.
Hope this helps.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Measurements and Feature Extraction finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!