Filters
Class FilterParams

java.lang.Object
  extended by Filters.FilterParams
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable

public class FilterParams
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable

Author:
Doug Gillespie

Parameters for digital filter design - just the filter on it's own, not the complete set with data sources and everything eles.

See Also:
Serialized Form

Field Summary
 FilterBand filterBand
           
 int filterOrder
           
 FilterType filterType
           
 float highPassFreq
           
 float lowPassFreq
           
 double passBandRipple
           
static int SCALE_LIN
           
static int SCALE_LOG
           
(package private)  int scaleType
          Scale type just used for drawing dialog
static long serialVersionUID
           
 double stopBandRipple
           
 
Constructor Summary
FilterParams()
           
 
Method Summary
 void assign(FilterParams p)
           
 FilterParams clone()
           
 boolean equals(FilterParams p)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

public static final long serialVersionUID
See Also:
Constant Field Values

filterType

public FilterType filterType

filterBand

public FilterBand filterBand

filterOrder

public int filterOrder

lowPassFreq

public float lowPassFreq

highPassFreq

public float highPassFreq

passBandRipple

public double passBandRipple

stopBandRipple

public double stopBandRipple

scaleType

int scaleType
Scale type just used for drawing dialog


SCALE_LOG

public static final int SCALE_LOG
See Also:
Constant Field Values

SCALE_LIN

public static final int SCALE_LIN
See Also:
Constant Field Values
Constructor Detail

FilterParams

public FilterParams()
Method Detail

equals

public boolean equals(FilterParams p)

assign

public void assign(FilterParams p)

clone

public FilterParams clone()
Overrides:
clone in class java.lang.Object

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object