Uses of Class
com.oregondsp.signalProcessing.filter.iir.PassbandType

Packages that use PassbandType
com.oregondsp.signalProcessing.filter.iir   
 

Uses of PassbandType in com.oregondsp.signalProcessing.filter.iir
 

Methods in com.oregondsp.signalProcessing.filter.iir that return PassbandType
static PassbandType PassbandType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PassbandType[] PassbandType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in com.oregondsp.signalProcessing.filter.iir with parameters of type PassbandType
Butterworth(int order, PassbandType type, double f1, double f2, double delta)
          Instantiates a new Butterworth digital filter.
ChebyshevI(int order, double epsilon, PassbandType type, double f1, double f2, double delta)
          Instantiates a new Chebyshev type I filter.
ChebyshevII(int order, double epsilon, PassbandType type, double f1, double f2, double delta)
          Instantiates a new Chebyshev type II filter.
IIRFilter(AnalogPrototype baseFilter, PassbandType type, double f1, double f2, double delta)
          Instantiates a new IIR filter.