edu.harvard.seas.iis.util.dsp
Class FIRFilter

java.lang.Object
  extended by edu.harvard.seas.iis.util.dsp.FIRFilter

public class FIRFilter
extends Object


Constructor Summary
FIRFilter(double[] h)
           
 
Method Summary
 void clear()
          Clears the filter in preparation for processing new input
 double[] getFilteredOutput(double[] input)
          A method for off-line processing of an entire input
 double getOutputSample(double inputSample)
           
static void main(String[] args)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FIRFilter

public FIRFilter(double[] h)
Method Detail

getFilteredOutput

public double[] getFilteredOutput(double[] input)
A method for off-line processing of an entire input

Parameters:
input -
Returns:

getOutputSample

public double getOutputSample(double inputSample)

clear

public void clear()
Clears the filter in preparation for processing new input


main

public static void main(String[] args)