C# Class SoundLibrary.Filter.Delay.Delay

遅延器
Inheritance: IDelay
ファイルを表示 Open project: ufcpp/UfcppSample

Public Methods

Method Description
Clear ( ) : void

内部状態のクリア

Clone ( ) : object
Delay ( int taps ) : System

コンストラクタ

GetBufferValue ( int n ) : double
GetValue ( ) : double
GetValue ( double x ) : double

フィルタリングを行う。

Push ( double x ) : void

Method Details

Clear() public method

内部状態のクリア
public Clear ( ) : void
return void

Clone() public method

public Clone ( ) : object
return object

Delay() public method

コンストラクタ
public Delay ( int taps ) : System
taps int 遅延タップ数
return System

GetBufferValue() public method

public GetBufferValue ( int n ) : double
n int
return double

GetValue() public method

public GetValue ( ) : double
return double

GetValue() public method

フィルタリングを行う。
public GetValue ( double x ) : double
x double フィルタ入力。
return double

Push() public method

public Push ( double x ) : void
x double
return void