Magnitude Plot Incorrect Frequency
Afficher commentaires plus anciens
Hi there, I'm having a problem plotting the magnitude spectrum of simple cos wave.
dt = .001;
t = -.5:dt:.5;
x1 = 2*cos(2*pi*20*t);
Wmax = 2*pi*100;
K = 2000;
w = (0:K-1) * Wmax / K;
X1 = x1 * exp(-j * t' * w) * dt;
mag_X1 = 2 * abs(X1);
display (X1);
subplot(2,1,1);
plot(t, x1);
xlabel('time');
ylabel('x(t)');
title('time domain');
subplot(2,1,2);
plot(w/2*pi, mag_X1);
axis([0 1000 0 7]);
xlabel('frequency Hz');
ylabel('|x(w)|');
title('magnitude spectrum');
The problem I'm having is that the plot shows a spike at 200 Hz rather than 20 Hz, if somebody could help me understand where I'm going wrong it would be greatly appreciated.
Réponse acceptée
Plus de réponses (1)
% Time step
dt = 0.001;
% Time vector
t = -0.5 : dt : 0.5;
% Define the signal: x1 = 2 cos(2π·20t)
x1 = 2 * cos(2*pi*20*t);
% Maximum angular frequency (rad/s)
Wmax = 2*pi*100;
% Number of frequency samples
K = 2000;
% Frequency vector in rad/s
w = (0 : K-1) * (Wmax / K);
% Compute Fourier transform via integration (numerical)
X1 = x1 * exp(-1j * t' * w) * dt;
% Magnitude (scaled by 2 for plotting)
mag_X1 = 2 * abs(X1);
% --- Plot time-domain signal ---
figure;
subplot(2,1,1);
plot(t, x1);
xlabel('Time (s)');
ylabel('x(t)');
title('Time Domain');
% --- Plot magnitude spectrum ---
subplot(2,1,2);
% Use w/(2*pi) to convert rad/s to Hz
plot(w/(2*pi), mag_X1);
xlabel('Frequency (Hz)');
ylabel('|X(\omega)|');
title('Magnitude Spectrum');
% Optional axis limits for clarity
axis([0 100 0 7]);
-----------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
It's important to note that the advice and code are based on limited information and meant for educational purposes. Users should verify and adapt the code to their specific needs, ensuring compatibility and adherence to ethical standards.
Professional Interests
- Technical Services and Consulting
- Embedded Systems | Firmware Developement | Simulations
- Electrical and Electronics Engineering
Feel free to contact me.
Catégories
En savoir plus sur Spectral Measurements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

