pub trait Demodulator {
// Required method
fn demodulate_soft(&self, symbols: &[f32], n_bits: usize, llr: &mut [i16]);
}Expand description
Converts received symbols to soft-decision LLRs for the decoder.
pub trait Demodulator {
// Required method
fn demodulate_soft(&self, symbols: &[f32], n_bits: usize, llr: &mut [i16]);
}Converts received symbols to soft-decision LLRs for the decoder.