GNU Radio 3.7.1 C++ API
gr::blocks::moving_average_ss Class Reference

output is the moving sum of the last N samples, scaled by the scale factor More...

#include <moving_average_ss.h>

Inheritance diagram for gr::blocks::moving_average_ss:

List of all members.

Public Types

typedef boost::shared_ptr
< moving_average_ss
sptr

Public Member Functions

virtual int length () const =0
virtual short scale () const =0
virtual void set_length_and_scale (int length, short scale)=0
virtual void set_length (int length)=0
virtual void set_scale (short scale)=0

Static Public Member Functions

static sptr make (int length, short scale, int max_iter=4096)

Detailed Description

output is the moving sum of the last N samples, scaled by the scale factor


Member Typedef Documentation


Member Function Documentation

virtual int gr::blocks::moving_average_ss::length ( ) const [pure virtual]

Get the length used in the avaraging calculation.

static sptr gr::blocks::moving_average_ss::make ( int  length,
short  scale,
int  max_iter = 4096 
) [static]

Create a moving average block.

Parameters:
lengthNumber of samples to use in the average.
scalescale factor for the result.
max_iterlimits how long we go without flushing the accumulator This is necessary to avoid numerical instability for float and complex.
virtual short gr::blocks::moving_average_ss::scale ( ) const [pure virtual]

Get the scale factor being used.

virtual void gr::blocks::moving_average_ss::set_length ( int  length) [pure virtual]

Set the length.

virtual void gr::blocks::moving_average_ss::set_length_and_scale ( int  length,
short  scale 
) [pure virtual]

Set both the length and the scale factor together.

virtual void gr::blocks::moving_average_ss::set_scale ( short  scale) [pure virtual]

Set the scale factor.


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