org.mklab.tool.matrix
クラス Inverf
java.lang.Object
org.mklab.tool.matrix.Inverf
public class Inverf
- extends Object
逆誤差関数を表すクラスです。
Inverse Error function
- バージョン:
- $Revision: 1.17 $
- 作成者:
- koga
- 関連項目:
Erf
クラス java.lang.Object から継承されたメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Inverf
public Inverf()
inverf
public static Matrix inverf(DoubleMatrix x)
x
の全ての成分の逆誤差関数を計算します。 精度は、1E-5
です。
誤差関数は、正規分布の確率分布関数を 0
からx
まで積分する
erfnc(x) = 2/sqrt(PI) integral(0,x) exp(-tˆ2)
です。
- パラメータ:
x
- データ
- 戻り値:
- 逆誤差関数 (inverse error function)
inverf
public static Matrix inverf(NumericalMatrixOperator<?> x,
double tolerance)
x
の全ての成分の逆誤差関数をけいさんします。 ただし、精度はtol
です。
- パラメータ:
x
- データtolerance
- 許容誤差
- 戻り値:
- 逆誤差関数 (inverse error function)