Aim
To study the SSB (Single Sideband) modulation and demodulation process.
Theory
Single Sideband (SSB) modulation is a refined version of Amplitude Modulation (AM), where only one of the sidebands (upper or lower) is transmitted. This reduces bandwidth usage and power requirements compared to conventional AM or DSB-SC.
The modulation process involves suppressing the carrier and one of the sidebands using filters or mathematical operations. The demodulation process retrieves the original message signal from the transmitted SSB signal by mixing it with a locally generated carrier at the receiver.
Mathematically, the modulated signal is expressed as:
SSB(t) = A_m cos(2πfct ± 2πfmt)
Here, the + sign indicates the upper sideband (USB), while the − sign indicates the lower sideband (LSB). Filters or a phasing method are used to isolate the desired sideband during modulation.
MATLAB Code
Expected Output
The MATLAB code produces three plots that illustrate the SSB modulation and demodulation process:
- Message Signal: A sinusoidal wave representing the original information signal.
- SSB Modulated Signal: The modulated signal containing only the upper sideband.
- Demodulated Signal: The recovered message signal after synchronous detection and low-pass filtering.
The modulated signal shows how the information is encoded within the sideband, while the demodulated signal demonstrates successful recovery of the original message.