Home
last modified time | relevance | path

Searched defs:FIR (Results 1 – 3 of 3) sorted by relevance

/cmsis-dsp-latest/dsppp/tests/
Dfilter_test.cpp476 struct FIR { struct
478 FIR(const PVector<T,TAPS> &coefs):coef_(coefs),state_(T{}) in FIR() argument
482 PVector<T,BLOCK> filter(const PVector<T,BLOCK> &signal) in filter()
529 void purec(const T *signal, T *dst) in purec()
570 FIR<T,BLOCK,TAPS> fir(coefs); in test() argument
/cmsis-dsp-latest/PythonWrapper/examples/kws_example/kws/
DAppNodes.h138 template<typename IN, int inputSize,typename OUT,int outputSize> class FIR; variable
146FIR(FIFOBase<q15_t> &src,FIFOBase<q15_t> &dst):GenericNode<q15_t,inputSize,q15_t,inputSize>(src,ds… in FIR() function
/cmsis-dsp-latest/PythonWrapper/examples/kws_example/
Dappnodes.py92 class FIR(GenericNode): class