GNU Radio 3.7.1 C++ API
gr::trellis::fsm Class Reference

Finite State Machine Specification class. More...

#include <fsm.h>

List of all members.

Public Member Functions

 fsm ()
 Constructor to create an uninitialized FSMS.
 fsm (const fsm &FSM)
 Constructor to copy an FSMS.
 fsm (int I, int S, int O, const std::vector< int > &NS, const std::vector< int > &OS)
 Constructor to to create an FSMS.
 fsm (const char *name)
 Constructor to create an FSMS from file contents.
 fsm (int k, int n, const std::vector< int > &G)
 Creates an FSMS from the generator matrix of a (n, k) binary convolutional code.
 fsm (int mod_size, int ch_length)
 Creates an FSMS describing ISI.
 fsm (int P, int M, int L)
 Creates an FSMS describing the trellis for a CPM.
 fsm (const fsm &FSM1, const fsm &FSM2)
 Creates an FSMS describing the joint trellis of two FSMs.
 fsm (const fsm &FSM, int n)
 Creates an FSMS representing n stages through the originial FSM (AKA radix-n FSM).
int I () const
int S () const
int O () const
const std::vector< int > & NS () const
const std::vector< int > & OS () const
const std::vector< std::vector
< int > > & 
PS () const
const std::vector< std::vector
< int > > & 
PI () const
const std::vector< int > & TMi () const
const std::vector< int > & TMl () const
void write_trellis_svg (std::string filename, int number_stages)
 Creates an svg image of the trellis representation.
void write_fsm_txt (std::string filename)
 Write the FSMS to a file.

Detailed Description

Finite State Machine Specification class.

An instance of this class represents a finite state machine specification (FSMS) rather than the FSM itself. It particular the state of the FSM is not stored within an instance of this class.


Constructor & Destructor Documentation

Constructor to create an uninitialized FSMS.

gr::trellis::fsm::fsm ( const fsm FSM)

Constructor to copy an FSMS.

gr::trellis::fsm::fsm ( int  I,
int  S,
int  O,
const std::vector< int > &  NS,
const std::vector< int > &  OS 
)

Constructor to to create an FSMS.

Parameters:
IThe number of possible input symbols.
SThe number of possible FSM states.
OThe number of possible output symbols.
NSA mapping from (current state, input symbol) to next state. next_state = NS[current_state * I + input_symbol]
OSA mapping from (current state, input symbol) to output symbol. output_symbol = OS[current_state * I + input_symbol]
gr::trellis::fsm::fsm ( const char *  name)

Constructor to create an FSMS from file contents.

Parameters:
namefilename
gr::trellis::fsm::fsm ( int  k,
int  n,
const std::vector< int > &  G 
)

Creates an FSMS from the generator matrix of a (n, k) binary convolutional code.

Parameters:
k???
n???
G???
gr::trellis::fsm::fsm ( int  mod_size,
int  ch_length 
)

Creates an FSMS describing ISI.

Parameters:
mod_sizemodulation size
ch_lengthchannel length
gr::trellis::fsm::fsm ( int  P,
int  M,
int  L 
)

Creates an FSMS describing the trellis for a CPM.

Parameters:
P???? h=K/P (relatively prime)
Malphabet size
Lpulse duration

This FSM is based on the paper by B. Rimoldi "A decomposition approach to CPM", IEEE Trans. Info Theory, March 1988 See also my own notes at http://www.eecs.umich.edu/~anastas/docs/cpm.pdf

gr::trellis::fsm::fsm ( const fsm FSM1,
const fsm FSM2 
)

Creates an FSMS describing the joint trellis of two FSMs.

Parameters:
FSM1first FSMS
FSM2second FSMS
gr::trellis::fsm::fsm ( const fsm FSM,
int  n 
)

Creates an FSMS representing n stages through the originial FSM (AKA radix-n FSM).

Parameters:
FSMOriginal FSMs
nNumber of stages.

Member Function Documentation

int gr::trellis::fsm::I ( ) const [inline]
const std::vector<int>& gr::trellis::fsm::NS ( ) const [inline]
int gr::trellis::fsm::O ( ) const [inline]
const std::vector<int>& gr::trellis::fsm::OS ( ) const [inline]
const std::vector< std::vector<int> >& gr::trellis::fsm::PI ( ) const [inline]
const std::vector< std::vector<int> >& gr::trellis::fsm::PS ( ) const [inline]
int gr::trellis::fsm::S ( ) const [inline]
const std::vector<int>& gr::trellis::fsm::TMi ( ) const [inline]
const std::vector<int>& gr::trellis::fsm::TMl ( ) const [inline]
void gr::trellis::fsm::write_fsm_txt ( std::string  filename)

Write the FSMS to a file.

Parameters:
filenamefilename
void gr::trellis::fsm::write_trellis_svg ( std::string  filename,
int  number_stages 
)

Creates an svg image of the trellis representation.

Parameters:
filenamefilename
number_stages????

The documentation for this class was generated from the following file: