<< Chapter < Page | Chapter >> Page > |
yields a much simpler description of QAM:
We now verify the complex-baseband model for modulation:
as well as for demodulation (assuming ):
The convenience of complex-baseband results in widespread use of complex-valued signals for comm systems!
VSB is another way to restore regain the spectral efficiency lost in AM. It's used to transmit North American terrestrial TV, both analog (NTSC)and digital (ATSC) formats.
Like AM, it can operate with or without a carrier tone.
Basically, VSB suppresses most of the redundant AM spectrum by filtering it:
The passband VSB filter is a BPF where
which implies its inside rolloff is symmetric around :
For VSB modulation, we have
It turns out that VSB demod is identical to AM demod:
We note that the property
may be convenient, e.g., for testing whether a given filter satisfies the passband VSB criterion. VSB filtering can also be implemented at baseband using a complex-valued filter response which satisfies
generating the complex-baseband message signal . The message can be recovered by simplying ignoring the imaginary partof the complex-baseband output .
Motivation: filtering at baseband is usually much cheaper than filtering at passband.
While AM modulated the carrier amplitude, FM modulates the carrier frequency.
t_max = 2.0; W = 1; % message params
Ts = 1/1000; t = 0:Ts:t_max;m = sin(2*pi*W*t); % message signal
fc = 20; % carrier freqD = 15; % FM mod index
kf = D*W/max(abs(m)); % freq sensitivitys_am = m.*cos(2*pi*fc*t);
s_fm = cos(2*pi*fc*t+2*pi*kf*cumsum(m)*Ts);subplot(3,1,1)
plot(t,m);grid on; title('message');
subplot(3,1,2)plot(t,s_am);
grid on; title('AM');subplot(3,1,3)
plot(t,s_fm);grid on; title('FM');
In particular, FM modulates the real-valued message via
where is called the “frequency-sensitivity factor.” Since the instantaneous modulation frequency
is a scaled version of the message , it is fitting to call this scheme “frequency modulation.”
Using the peak frequency deviation , the “modulation index” D is defined as
Increasing D decreases spectral efficiency but increases robustness to noise/interference.
Carson's Rule approximates the FM passband signal-BW as
Example: Mono FM radio:
FM stereo uses smaller D due to message spectrum:
There are various FM demodulators, but the “discriminator” is one of the best known.Recalling that
we see that
is a form of large-carrier AM (assuming ), which can be demodulated using an envelope detector as follows:
Notification Switch
Would you like to follow the 'Introduction to analog and digital communications' conversation and receive update notifications?