C# Class SoundLibrary.Mathematics.Discrete.Function

離散関数を表すクラス。
显示文件 Open project: ufcpp/UfcppSample

Public Methods

Method Description
Argmax ( Function func ) : int

func の値を最大にする引数の値を返す。

Argmax ( Function func, int min, int max ) : int

func の値を最大にする引数の値を返す。

FromArray ( Type array ) : Function

配列の値をそのまま返す関数を作る。

ToArray ( ) : System.Type[]

配列化。

this ( int n ) : Type

f[n] を求める。

Method Details

Argmax() public static method

func の値を最大にする引数の値を返す。
public static Argmax ( Function func ) : int
func Function argmax を求めたい関数。
return int

Argmax() public static method

func の値を最大にする引数の値を返す。
public static Argmax ( Function func, int min, int max ) : int
func Function argmax を求めたい関数。
min int 引数の範囲の最小値
max int 引数の範囲の最大値
return int

FromArray() public static method

配列の値をそのまま返す関数を作る。
public static FromArray ( Type array ) : Function
array System.Type 配列
return Function

ToArray() public method

配列化。
public ToArray ( ) : System.Type[]
return System.Type[]

this() public abstract method

f[n] を求める。
public abstract this ( int n ) : Type
n int
return System.Type