Question

In: Electrical Engineering

Q: In MATLAB, make time-domain graphs of a Conventional DSB AM signal u(t) = A_c[1 +...

Q: In MATLAB, make time-domain graphs of a Conventional DSB AM signal u(t) = A_c[1 + am(t)]cos(2×π×f_c×t), with A_c = 1, m(t) = cos(2×π×f_m×t), f_c = 1 kHz, f_m = 50 Hz, for four cases of AM modulations: a = 0, a = 0.3, a = 1, a = 1.3. Your graphs should be over four periods of the message (i.e., 0 < t < 4/fm). Include your code in your solution as well as the four graphs.

Solutions

Expert Solution

MATLAB CODE

clc;
clear all

fm=50;
t=0:1e-4:4/fm; % Time Axis
Ac=1; % Initial Values
a1=0;
fc=1e3;
m_t=cos(2*pi*fm*t);
u1=Ac*(1+a1*m_t).*cos(2*pi*fc*t); % Equation
figure(1)
plot(t,u1); % Plots

title('DSB-SC MODULATION IN TIME DAOMAIN a=0');
xlabel('time (sec)');
ylabel('amplitude');
% a=0.3;
a2=0.3;
u_2=Ac*(1+a2*m_t).*cos(2*pi*fc*t);
figure(2)
plot(t,u_2);

title('DSB-SC MODULATION IN TIME DAOMAIN a=0.3');
xlabel('time (sec)');
ylabel('amplitude');
% a=01;
a3=1;
u_3=Ac*(1+a3*m_t).*cos(2*pi*fc*t);
figure(3)
plot(t,u_3);

title('DSB-SC MODULATION IN TIME DAOMAIN a=1');
xlabel('time (sec)');
ylabel('amplitude');
% a=1.3;
a4=1.3;
u_4=Ac*(1+a4*m_t).*cos(2*pi*fc*t);
figure(4)
plot(t,u_4);

title('DSB-SC MODULATION IN TIME DAOMAIN a=1.3');
xlabel('time (sec)');
ylabel('amplitude');

PLOTS


Related Solutions

1.) Explain the difference between a time domain signal and a frequency domain signal. 2.) When...
1.) Explain the difference between a time domain signal and a frequency domain signal. 2.) When would you select the frequency domain signal over the time domain signal.
***Please solve on MATLAB:*** Consider the signal x(t) = 2−tu(t), where u(t) is the unit step...
***Please solve on MATLAB:*** Consider the signal x(t) = 2−tu(t), where u(t) is the unit step function. a) Plot x(t) over (−1 ≤ t ≤ 1). b) Plot 0.5x(1 − 2t) over (−1 ≤ t ≤ 1).
if the input signal is x(t)=exp[-at]u(t) and system impulse response is h(t)=u(t+2) what is the outpul...
if the input signal is x(t)=exp[-at]u(t) and system impulse response is h(t)=u(t+2) what is the outpul signal y(t) ?
Suppose S = {p, q, r, s, t, u} and A = {p, q, s, t}...
Suppose S = {p, q, r, s, t, u} and A = {p, q, s, t} and B = {r, s, t, u} are events. x p q r s t u p(x) 0.15 0.25 0.2 0.15 0.1 (a) Determine what must be p(s). (b) Find p(A), p(B) and p(A∩B). (c) Determine whether A and B are independent. Explain. (d) Arer A and B mutually exclusive? Explain. (e) Does this table represent a probability istribution of any random variable? Explain.
Fourier Transform. Discuss the effects of multiplying a time domain signal by a sinusoid (including multiple...
Fourier Transform. Discuss the effects of multiplying a time domain signal by a sinusoid (including multiple times) has on both the time and frequency domain representations, as well as the practical use of the method, i.e. summarize the conceptual understanding within 100 words.
By using MATLAB 1. Divide a speech signal or music signal into frames of size N...
By using MATLAB 1. Divide a speech signal or music signal into frames of size N = 64. 2. Compute the N?point DFT of each frame. 3. Save only first L = 20 DFT coefficients. 4. Reconstruct the frame from these L coefficients. (Do not disturb the symmetry of DFT during inverse DFT computation. X[k] = X[N ?k] for real signals, N = 64 here. Pad zeros for missing DFT coefficients.) 5. Comment on the quality of reconstructed and the...
In survival analysis,original life time is T and mean residual life at time u is mrl(u)....
In survival analysis,original life time is T and mean residual life at time u is mrl(u). Show the following: mrl(u)=E(T-u|T>u)= [ integral(u to infinite) S(t) dt ] / S(u).
Consider an AM modulator with the followings: the message signal is m(t)= 0.5 cos (2πfmt), the...
Consider an AM modulator with the followings: the message signal is m(t)= 0.5 cos (2πfmt), the carrier signal frequency is 200kHz, the carrier signal amplitude is unity, the amplitude sensitivity is 1.6. Which one is the power of the lower side-band ?
1. Show that if u is harmonic in a domain Ω, then also the derivatives of...
1. Show that if u is harmonic in a domain Ω, then also the derivatives of u of any order are harmonic in Ω. (Hint: To get the result for any order you may want to use induction).
Make exact by inspection and solve du/dt +u/t=2e^t+6t
Make exact by inspection and solve du/dt +u/t=2e^t+6t
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT