public interface Filter
Modifier and Type | Method and Description |
---|---|
double |
getFrequencyResponse(double dOmega)
Get the frequency response of the filter at a specified frequency.
|
double |
getPhaseResponse(double dOmega)
Get the phase response of the filter at a specified frequency.
|
float |
process(float fSample)
Process one sample through the filter.
|
float process(float fSample)
double getFrequencyResponse(double dOmega)
dOmega
- The frequency for which the frequency response
should be calculated. Has to be given as omega values
([-PI .. +PI]).double getPhaseResponse(double dOmega)
dOmega
- The frequency for which the phase response
should be calculated. Has to be given as omega values
([-PI .. +PI]).