<< ellipj Special Functions erfc >>

Scilab Help >> Special Functions > erf

erf

誤差関数.

呼び出し手順

y = erf(x)

引数

x

ベクトルまたは行列

y

(xと同じ大きさの)ベクトルまたは行列

説明

erf は誤差関数を計算します:

deff('y=f(t)','y=exp(-t^2)');
erf(0.5)-2/sqrt(%pi)*intg(0,0.5,f)
x = [1+2*%i, -1+2*%i, 1e-6+2e-6*%i,0+2*%i];
a=erf(x)
// 以下と等価
1-erfc(x)

アルゴリズム

この関数は Faddeevaパッケージ ライブラリに基づきます.

参照

履歴

VersionDescription
5.5.0 erf関数が複素数の要素をサポート

Report an issue
<< ellipj Special Functions erfc >>