11-01-2007 12:27 PM
11-02-2007 05:53 AM
If you declare variables or arrays within the function as static, their values will be remembered from one call of function to the next. (Which is not always a good idea in a recursive or multi-threaded application.) Is this what you want, or have I misunderstood?
JR
11-02-2007 10:22 AM
I believe that you may have misunderstood my question, what I would like to do is call and Ellipitical Low Pass Filter function and have the function recoginze that the data is continous.
for example the analysis library has the function
Elp_LPF(array, numpts, sampfreq, cutoff_freq, ripple, stopband, order, output)
but what I would like to do is call Elp_LPF several times with smaller data sets rather than have to filter all of the data at once.
Does that make more sense?
11-06-2007 11:15 AM