C# 클래스 SoundFingerprinting.Windows.HanningWindow

Hanning window function
상속: IWindowFunction
파일 보기 프로젝트 열기: AddictedCS/soundfingerprinting 1 사용 예제들

공개 메소드들

메소드 설명
GetWindow ( int length ) : float[]

Gets the corresponding window function

WindowInPlace ( float outerspace, int length ) : void

Window the outer space by Hanning window function

For additional explanation please consult http://en.wikipedia.org/wiki/Hann_function

메소드 상세

GetWindow() 공개 메소드

Gets the corresponding window function
public GetWindow ( int length ) : float[]
length int Length of the window
리턴 float[]

WindowInPlace() 공개 메소드

Window the outer space by Hanning window function
For additional explanation please consult http://en.wikipedia.org/wiki/Hann_function
public WindowInPlace ( float outerspace, int length ) : void
outerspace float Array to be windowed
length int Window length
리턴 void