I'm trying to write some digital filtering code but I have no experience with digital filters. I think I need the FIRFiltering() function from the advanced analysis library. This function provides arguments for the input data array, the set of filter coefficients, the output array, and also an array called the State_Information. Where does this array come from and what is it used for?
Initial X Conditions contains the most recent inputs. The most recent prior input should be the last element in the array. The number of elements in this array should be one less than the number of elements in the FIR Coefficients array.