Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Special Functions > erfinv

erfinv

逆誤差関数

呼び出し手順

y = erfinv(x)

引数

x

実数ベクトルまたは行列

y

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

説明

erfinv 関数はerf 誤差関数の逆, つまり,-1 ≤ x ≤ 1 となるような 任意のxについて erf(erfinv(x)) = x を計算します.

x = linspace(-0.99, 0.99, 100);
y = erfinv(x);
plot2d(x, y)

参照

  • cdfnor — 累積分布関数: 正規分布
  • erf — 誤差関数.
  • erfc — 相補誤差関数.
  • erfcx — スケーリング付き相補誤差関数.

参考文献

Milton Abramowitz and Irene A. Stegun, eds. Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical Tables. New York: Dover, 1972.

Report an issue
<< erfi Special Functions findm >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 14 15:10:30 CET 2017