TFView

template<class T>
class TFView : public tsa::BaseView

Time view: container for time series.

Operations

void Clear()

Clear the data in the view, which are all initialized to zero.

Data access

numericType &operator()(unsigned int i, unsigned int j)

Get a value in a given channel at a given index.

Return

the data value

Parameters
  • i: index on the time axis

  • j: index on the frequency axis

Public Functions

TFView(unsigned int FrequencySize, unsigned int TimeSize, double aStartT = 0.0, double aSamplingT = 1.0, double aStartF = 0.0, double aSamplingF = 1.0)

Constructor.

Parameters
  • FrequencySize: the number of data on frequency axis

  • TimeSize: the number of data on time axis

  • aStartT: start time

  • aSamplingT: time step

  • aStartF: start frequency

  • aSamplingF: frequency step

~TFView()

Destructor