Question
Experiment 2 - Double Sideband Amplitude Modulation-Long Carrier (DYBGM-UT) and Interpretation 1a) Run the code below. Fill in the blanks in the code. Write the
Experiment 2 - Double Sideband Amplitude Modulation-Long Carrier (DYBGM-UT) and Interpretation
1a) Run the code below. Fill in the blanks in the code. Write the required titles with the "title" command. Comment the graphics.
1b) In the experiment, run a separate code for the values of the "ma" parameter [0.1,0.5,3]. Comment out the graphs
1c) Write the code that calculates the axis regularity and phase spectra of the input, carrier and output signs for the value ma = 1 in the experiment. Plot the amplitude spectra of the three signs in a single image with subplot, delimiting the x-axis of the graphs with xlim [-3 * Fc 3 * Fc]. Make the necessary title and axis names for each image. Comment on the graphics
= 1 %% 2a) carrier amplitude modulation and its interpretation 2 close all, clear all,clc 3 Fs 5000; Ts = 1/Fs; 4 FC = 100; % carrier frequency - Hz 5 Fm 10; 6 t = -1:Ts:1; 7 A = 1; ma = 1; 8 input = ( A*COS (2*pi*Fm*t); % information sign 9 carrier = cos(2*pi*Fc*t); % carrier 10 s_am = (1 + .... 11 figure, 12 subplot(311),plot(t,input), title('. '),grid on 13 xlabel ('Zaman [sn]'), ylabel('Genlik [V]') 14 subplot(312), plot(t,carrier), title('..........'),grid on 15 xlabel('Zaman [sn]'), ylabel('Genlik [V]') 16 subplot(313), plot(t, s_am), title('.. ..'),grid on 17 xlabel('Zaman [sn]'), ylabel('Genlik [V]'),xlim((-0.5 0.5]) 19 %% 2b) Fourier analysis 20 ?? 21 ?? 22
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started