ddf.minim.analysis
Class GaussWindow

java.lang.Object
  extended by ddf.minim.analysis.WindowFunction
      extended by ddf.minim.analysis.GaussWindow

public class GaussWindow
extends WindowFunction

A Gauss window function.

Author:
Damien Di Fede, Corban Brook
See Also:
The Gauss Window

Field Summary
 
Fields inherited from class ddf.minim.analysis.WindowFunction
length, TWO_PI
 
Constructor Summary
GaussWindow()
          Constructs a Gauss window with a default alpha value of 0.25
GaussWindow(double alpha)
          Constructs a Gauss window function.
 
Method Summary
protected  float value(int length, int index)
           
 
Methods inherited from class ddf.minim.analysis.WindowFunction
apply, generateCurve
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GaussWindow

public GaussWindow(double alpha)
Constructs a Gauss window function.


GaussWindow

public GaussWindow()
Constructs a Gauss window with a default alpha value of 0.25

Method Detail

value

protected float value(int length,
                      int index)
Specified by:
value in class WindowFunction