C# Class MCAEmotiv.Analysis.FFTExtensions

Contains useful FFT extension methods
ファイルを表示 Open project: madelson/Emotiv-Experimenter

Public Methods

Method Description
Apply ( this type, IEnumerable values, int length ) : IEnumerable

Returns the result of applying the window function to values using length

GetWindowFunction ( this type ) : Func

Returns a function that generates the window function at any given the index and length

Private Methods

Method Description
ApplyHamming ( int index, int length ) : double
ApplyRectangular ( int index, int length ) : double

Method Details

Apply() public static method

Returns the result of applying the window function to values using length
public static Apply ( this type, IEnumerable values, int length ) : IEnumerable
type this
values IEnumerable
length int
return IEnumerable

GetWindowFunction() public static method

Returns a function that generates the window function at any given the index and length
public static GetWindowFunction ( this type ) : Func
type this
return Func