How can I plot 'period' by using fft functoin??

7 Ansichten (letzte 30 Tage)
Chris
Chris am 7 Nov. 2021
Kommentiert: Mathieu NOE am 8 Nov. 2021
How can I plot 'period' by using fft functoin??
  1 Kommentar
Mathieu NOE
Mathieu NOE am 8 Nov. 2021
hello
maybe you should show what you have tried so far... and then we will help you
tx

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Chunru
Chunru am 8 Nov. 2021
Fs = 1000; % Sampling frequency
T = 1/Fs; % Sampling period
L = 1500; % Length of signal
t = (0:L-1)*T; % Time vector
S = 0.7*sin(2*pi*50*t) + sin(2*pi*120*t);
X = S + 2*randn(size(t));
Y = fft(X);
% Compute the two-sided spectrum P2. Then compute the single-sided spectrum P1
% based on P2 and the even-valued signal length L.
P2 = abs(Y/L);
P1 = P2(1:L/2+1);
P1(2:end-1) = 2*P1(2:end-1);
% Define the frequency domain f and plot the single-sided amplitude spectrum P1.
% The amplitudes are not exactly at 0.7 and 1, as expected, because of the added
% noise. On average, longer signals produce better frequency approximations.
figure
f = Fs*(0:(L/2))/L;
plot(f,P1)
title('Single-Sided Amplitude Spectrum of X(t)')
xlabel('f (Hz)')
ylabel('|P1(f)|')
%% Plot the spectrum vs period (this can be done but rarely used)
figure
f = Fs*(0:(L/2))/L;
plot(1./f,P1)
title('Single-Sided Amplitude Spectrum of X(t)')
xlabel('T - period (sec)')
ylabel('|P1(T)|')
xlim([0 0.2])

Weitere Antworten (0)

Kategorien

Mehr zu Fourier Analysis and Filtering finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by