IT++ 4.3.1
|
Dummy Channel Code class. More...
#include <itpp/comm/channel_code.h>
Public Member Functions | |
Dummy_Code () | |
Default constructor. | |
virtual | ~Dummy_Code () |
Destructor. | |
virtual void | encode (const bvec &uncoded_bits, bvec &coded_bits) |
Encode a bvec of input. | |
virtual bvec | encode (const bvec &uncoded_bits) |
Encode a bvec of input. | |
virtual void | decode (const bvec &coded_bits, bvec &decoded_bits) |
Decode a bvec of coded data. | |
virtual bvec | decode (const bvec &coded_bits) |
Decode a bvec of coded data. | |
virtual void | decode (const vec &received_signal, bvec &decoded_bits) |
Decode a vec of received data. Assumes soft input (BPSK modulated) | |
virtual bvec | decode (const vec &received_signal) |
Decode a vec of received data. Assumes soft input (BPSK modulated) | |
virtual double | get_rate () const |
Get the code rate. | |
Dummy Channel Code class.
A dummy code class. Uncoded output.
Definition at line 86 of file channel_code.h.
|
inline |
Default constructor.
Definition at line 90 of file channel_code.h.
|
inlinevirtual |
Destructor.
Definition at line 92 of file channel_code.h.
|
inlinevirtual |
Encode a bvec of input.
Implements itpp::Channel_Code.
Definition at line 95 of file channel_code.h.
|
inlinevirtual |
Encode a bvec of input.
Implements itpp::Channel_Code.
Definition at line 97 of file channel_code.h.
|
inlinevirtual |
Decode a bvec of coded data.
Implements itpp::Channel_Code.
Definition at line 100 of file channel_code.h.
|
inlinevirtual |
Decode a bvec of coded data.
Implements itpp::Channel_Code.
Definition at line 102 of file channel_code.h.
|
inlinevirtual |
Decode a vec of received data. Assumes soft input (BPSK modulated)
Implements itpp::Channel_Code.
Definition at line 105 of file channel_code.h.
References itpp::BPSK::demodulate_bits().
|
inlinevirtual |
Decode a vec of received data. Assumes soft input (BPSK modulated)
Implements itpp::Channel_Code.
Definition at line 107 of file channel_code.h.
References decode().
Referenced by decode().
|
inlinevirtual |