Ebasco_ECE 110 Lab 1
Ebasco_ECE 110 Lab 1
Laboratory Report 1
Amplitude Modulation Using SCILAB Software
March 5, 2025
Submitted by:
Submitted to:
• To analyze Amplitude Modulation (AM) signals with different modulation indices and
• SCILAB Software
3.0 THEORY
commonly for transmitting information via a radio carrier wave. AM works by varying the
amplitude of the carrier signal in proportion to the amplitude of the message signal (modulating
signal).
where:
• 𝒇𝒄 = Carrier frequency
• 𝒇𝒎 = Modulating frequency
𝑨𝒎
𝒎=
𝑨𝒄
which determines how much the carrier amplitude varies. If 𝑚 > 1, the signal is over-
modulated.
4.0 LABORATORY PROCEDURE
• Amplitude of carrier = 9 V
3. Use the SCILAB code provided below to generate and plot the AM signal.
4. Run the script and observe the generated graphs for the carrier signal, modulating
// Define parameters
fc = 5000; // Carrier frequency in Hz
Ac = 9; // Amplitude of carrier signal in V
fm = 500; // Modulating frequency in Hz
Am = 4.5; // Amplitude of modulating signal in V
fs = 10*fc; // Sampling frequency (10 times carrier frequency)
t = 0:1/fs:0.1; // Time vector for 100 ms
// Generate signals
carrier = Ac * cos(2 * %pi * fc * t);
modulating = Am * cos(2 * %pi * fm * t);
modulated = (Ac + modulating) .* cos(2 * %pi * fc * t);
// Plot AM Signal
subplot(3,1,3);
plot(t, modulated);
title("Amplitude Modulated Signal");
xlabel("Time (s)");
ylabel("Amplitude (V)");
grid();
The results of the experiment are presented in three graphical representations. The first
graph (Figure 1) illustrates the carrier signal, which is a high-frequency cosine wave with a
constant amplitude. The second graph (Figure 2) represents the modulating signal, which is a
lower-frequency cosine wave that dictates the variations in the carrier wave. Finally, the third
graph (Figure 3) shows the amplitude-modulated (AM) signal, where the carrier wave’s
From the analysis of the generated AM waveform, it can be observed that the amplitude
of the carrier varies in direct proportion to the modulating signal. The modulation index is
calculated as: which indicates a 50% modulation depth. This means that the carrier amplitude
fluctuates between 4.5V and 13.5V, following the variations in the modulating wave. The
of amplitude modulation.
Figure 1. Carrier Signal
7.0 CONCLUSION
using SCILAB. The results confirm that AM varies the carrier amplitude according to the
modulating signal. The modulation index was calculated, and its effect on the waveform was
observed. Future work can include testing different modulation indices and analyzing frequency
spectra.