Skip to content

class fir_state<T, U> fir

template <typename T, typename U = T>
struct fir_state { … }

constructor fir_state<T, U>(const fir_state<T, U> &)

fir_state(const fir_state&)            = default

Defined at dsp/fir.hpp:92

constructor fir_state<T, U>(fir_state<T, U> &&)

fir_state(fir_state&&)                 = default

Defined at dsp/fir.hpp:93

function operator=(const fir_state<T, U> &)

fir_state& operator=(const fir_state&) = default

Defined at dsp/fir.hpp:94

function operator=(fir_state<T, U> &&)

fir_state& operator=(fir_state&&)      = default

Defined at dsp/fir.hpp:95

constructor fir_state<T, U>(fir_params<T>)

fir_state(fir_params<T> params)

Defined at dsp/fir.hpp:97

function fir_state<T, U>(Cont &&)

template <has_data_size Cont>
fir_state(Cont&& taps)

Defined at dsp/fir.hpp:102

function push_delayline(Cont &&)

template <has_data_size Cont>
void push_delayline(Cont&& state)

Defined at dsp/fir.hpp:106

variable params

fir_params<T> params

Defined at dsp/fir.hpp:110

variable delayline

univector<U> delayline

Defined at dsp/fir.hpp:111

variable delayline_cursor

size_t delayline_cursor

Defined at dsp/fir.hpp:112

Defined at dsp/fir.hpp:90