SignalProcessing
InfiniteImpulseResponseFilter
filter a signal with a finite impulse response filter
Calling Sequence
Parameters
Options
Description
Thread Safety
Examples
Compatibility
InfiniteImpulseResponseFilter( A, taps, delayline )
IIRFilter( A, taps, delayline )
A
-
Array of real numeric values; the signal to filter
taps
Array of real numeric values; the tap coefficients
delayline
(optional) Array of real numeric values; initial values for the delay line
container : Array, predefined Array for holding the result
The InfiniteImpulseResponseFilter( A, taps, delayline ) command filters the signal (sample) in the array A using the tap coefficients in the array taps. The taps array may be generated by using the GenerateButterworthTaps and GenerateChebyshev1Taps commands, or you may provide your own custom filtering coefficients.
The delayline argument is optional. If delayline is provided, it must be an Array of real numeric values and the same length as taps.
Before the code performing the computation runs, the input Arrays A, taps, and (if present) delayline are converted to datatype float[8] if they do not have that datatype already. For this reason, it is most efficient if the input Arrays have this datatype beforehand.
If the container=C option is provided, then the results are put into C and C is returned. With this option, no additional memory is allocated to store the result. The container must be an Array of size equal to the size of A and having datatype float[8].
The IIRFilter command is provided as an alias.
The SignalProcessing[InfiniteImpulseResponseFilter] command is thread-safe as of Maple 17.
For more information on thread safety, see index/threadsafe.
with⁡SignalProcessing:
with⁡plots:
A≔GenerateJaehne⁡512,4095:
PA≔SignalPlot⁡A,title=Original Signal:
taps≔GenerateButterworthTaps⁡9,310,filtertype=highpass
taps≔
B≔InfiniteImpulseResponseFilter⁡A,taps:
PB≔SignalPlot⁡B,title=Filtered Signal:
display⁡PA,PB
The SignalProcessing[InfiniteImpulseResponseFilter] command was introduced in Maple 17.
For more information on Maple 17 changes, see Updates in Maple 17.
See Also
SignalProcessing[FiniteImpulseResponseFilter]
SignalProcessing[GenerateButterworthTaps]
SignalProcessing[GenerateChebyshev1Taps]
Download Help Document