1RTF_INIT_FILTER(3) rtfilter library RTF_INIT_FILTER(3)
2
3
4
6 rtf_init_filter - Reinitialize the filter with given data
7
9 #include <rtfilter.h>
10
11 void rtf_init_filter(hfilter filt, const void* data);
12
14 rtf_init_filter() initializes the internal states of the filter with
15 one sample of data as if the filter has been applied indefinitely to
16 constant data consisting by this only sample.
17
18 data is allowed to be NULL. In such case, the filter is initialized
19 with null signals (i.e. initialized with an input full of 0.0 values).
20
21 If data is not NULL, the array pointed by data should be organized the
22 same way as it would be if used in a call to rtf_filter(3) with one
23 sample.
24
26 None.
27
29 rtf_create_filter(3), rtf_filter(3)
30
31
32
33
34EPFL 2010 RTF_INIT_FILTER(3)