Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
erfi
虚数の誤差関数.
呼び出し手順
y = erfi(z)
引数
- z
ベクトルまたは行列
- y
ベクトルまたは行列 (xと同じ大きさ)
説明
erfi
は,-i.erf(i.x)
で定義される xの虚数誤差関数を計算します.
例
erfi(1.234) x = [-0.1, 0.1, 1, 1+2*%i,-1+2*%i,1e-6+2e-6*%i,0+2*%i]; erfi(x) // 以下と同じ -%i * erf(%i*x)
アルゴリズム
この関数はFaddeevaパッケージ ライブラリにもとづいています.
履歴
バージョン | 記述 |
5.5.0 | 関数erfiが複素数引数をサポート |
Report an issue | ||
<< erfcx | Special Functions | erfinv >> |