Alternative Stereo Decoding Methods

Occasionally it's suggested that FM stereo noise could be reduced by decoding only the lower sideband of the double-sideband L−R signal. Since this requires half the bandwidth, the noise should be half as much. In fact, goes the argument, detected FM noise actually rises with frequency, so USB noise is greater than LSB noise, yielding even further noise reduction.

What the argument neglects is that dispensing with the upper sideband forgoes the signal components there. During synchronous demodulation, LSB and USB signal components combine coherently, their amplitudes adding to yield 6 dB gain. But uncorrelated noise in the two sidebands combines incoherently, increasing only 3 dB for flat noise. Still, FM noise does rise with frequency, so perhaps LSB decoding offers a benefit despite the 6 dB signal penalty.

I wrote a short computer program to resolve the issue. The program calculates S/N gain for three alternative stereo decoding methods. The first is LSB decoding. The second is optimal linear decoding, where the upper and lower sidebands are combined with weighting coefficients that maximize S/N for the combination. The coefficients vary with frequency so this method essentially multiplies the sidebands by a weighting curve before combining them.

For two noisy channels with equal signal amplitudes, the optimal weighting coefficient for the quieter channel is n/q, where n and q are the RMS noise amplitudes of the noisier and quieter channels. The coefficient for the noisier channel is q/n.

The sum of the coefficients isn't constant so the signal spectrum is corrected to flat after combination.

The third alternative method uses LSB decoding, but the transmit signal has twice-normal LSB amplitude and no USB. A multipath simulation for this signal is here.

Results compared with the standard decoder:

Method                       S/N Gain
LSB decoding                 -2.28 dB
Optimal linear decoding       0.20
LSB decoding + LSB transmit   3.69

It's remarkable that the optimal linear decoder offers so little improvement over the standard decoder.

  FOR f = 20 TO 15000				' Integrate noise power from 20 Hz to 15 kHz
    d = 1 / (1 + (2 * 3.141593 * 75E-6 * f) ^ 2)' Deemphasis filter power factor
    b = b + d * f ^ 2				' Sum deemphasized L+R noise power
    l = 38000 - f                         	' L-R LSB freq
    u = 38000 + f                         	' L-R USB freq
    nl = nl + d * l ^ 2                   	' Sum deemphasized LSB noise power
    nu = nu + d * u ^ 2				' Sum deemphasized USB noise power
    w = u / l                             	' Optimal weighting coefficient
    l = l * w                             	' Weighted LSB noise amplitude
    u = u / w                             	' Weighted USB noise amplitude
    c = 2 / (w + 1 / w)                        	' Amplitude-correction factor for flat spectrum
    nw = nw + d * (l ^ 2 + u ^ 2) * c ^ 2 	' Sum deemphasized, weighted, corrected noise power
  NEXT f
  PRINT 10 * LOG((b + nl + nu) / (b + 4 * nl)) / LOG(10) ' S/N gain for LSB decoding
  PRINT 10 * LOG((b + nl + nu) / (b + nw)) / LOG(10)	 ' S/N gain for optimal linear decoding
  PRINT 10 * LOG((b + nl + nu) / (b + nl)) / LOG(10)	 ' S/N gain for LSB decoding + LSB transmit

October 8, 202088–108 MHz