1by20ai020 Assignment
1by20ai020 Assignment
Submitted By
2023-2024
FREQUENCY MODULATION
AIM:
To verify the matlab implementation of frequency modulation of a given single-
tone signal
THEORY:
The modulation index gives an indication of how much the frequency of the
carrier signal is changing relative to the frequency of the input signal. In
summary, frequency modulation of a single-tone signal involves varying the
frequency of a carrier signal in proportion to the amplitude of the input signal.
The amount of frequency deviation and the modulation index determine the
extent of this frequency variation. FM is widely used in communication systems,
especially in applications like FM radio broadcasting.
IMPLEMENTATION:
Code:
subplot (2,1,1);
plot (v) ;
title('Modulating signal');
subplot (2,1,2);
plot (y);
title('Frequency Modulated Signal');
Output:
RESULT:
The matlab simulation with respect to frequency modulation of a single-tone
signal.
FREQUENCY MODULATION
AIM:
To verify the matlab implementation of frequency modulation of a given multi-
tone signal.
THEORY:
subplot (2,1,1);
plot (v) ;
title('Multi Tone Modulating signal');
subplot (2,1,2);
plot (y);
title('Frequency Modulated Signal');
Output:
RESULT: