Package samer.units

Class FIRFilter

  • java.lang.Object
    • samer.units.FIRFilter
  • All Implemented Interfaces:
    Filter


    public class FIRFilter
    extends java.lang.Object
    implements Filter
    • Constructor Summary

      Constructors 
      Constructor and Description
      FIRFilter(double[] A) 
      FIRFilter(int n) 
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      void dispose() 
      double filter(double z)
      FIR filter using array of filter coefficients
      void reset() 
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FIRFilter

        public FIRFilter(double[] A)
      • FIRFilter

        public FIRFilter(int n)
    • Method Detail

      • dispose

        public void dispose()
        Specified by:
        dispose in interface Filter
      • reset

        public void reset()
      • filter

        public final double filter(double z)
        FIR filter using array of filter coefficients
        Specified by:
        filter in interface Filter