org.mklab.tool.matrix
クラス Gammaf

java.lang.Object
  上位を拡張 org.mklab.tool.matrix.Gammaf

public class Gammaf
extends Object

完全・不完全ガンマ関数を表すクラスです。

Complete and incomplete Gamma functions

バージョン:
$Revision: 1.18 $
作成者:
koga
関連項目:
Gammac, Gammai

コンストラクタの概要
Gammaf()
           
 
メソッドの概要
static DoubleMatrix gammaf(DoubleMatrix a)
          aの全ての成分について、完全ガンマ関数の値を 返します。
static DoubleMatrix gammaf(DoubleMatrix a_, DoubleMatrix x_)
          aの成分について、不完全ガンマ関数の値(Xまで積分した値) を返します。
static Matrix gammaf(NumericalMatrixOperator<?> a)
          aの全ての成分について、完全ガンマ関数の値を 返します。
static Matrix gammaf(NumericalMatrixOperator<?> a_, NumericalMatrixOperator<?> x_)
          aの成分について、不完全ガンマ関数の値(Xまで積分した値) を返します。
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

Gammaf

public Gammaf()
メソッドの詳細

gammaf

public static Matrix gammaf(NumericalMatrixOperator<?> a)
aの全ての成分について、完全ガンマ関数の値を 返します。

パラメータ:
a - データ
戻り値:
完全・不完全ガンマ関数の値 (value of function)

gammaf

public static Matrix gammaf(NumericalMatrixOperator<?> a_,
                            NumericalMatrixOperator<?> x_)
aの成分について、不完全ガンマ関数の値(Xまで積分した値) を返します。 axは同じ大きさの行列でなければならない。

パラメータ:
a_ - データ
x_ - 積分区間
戻り値:
完全・不完全ガンマ関数の値 (value of function)

gammaf

public static DoubleMatrix gammaf(DoubleMatrix a)
aの全ての成分について、完全ガンマ関数の値を 返します。

パラメータ:
a - データ
戻り値:
完全・不完全ガンマ関数の値 (value of function)

gammaf

public static DoubleMatrix gammaf(DoubleMatrix a_,
                                  DoubleMatrix x_)
aの成分について、不完全ガンマ関数の値(Xまで積分した値) を返します。 axは同じ大きさの行列でなければならない。

パラメータ:
a_ - データ
x_ - 積分区間
戻り値:
完全・不完全ガンマ関数の値 (value of function)