Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - Русский

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

inverse error function

Syntax

y = erfinv(x)

Arguments

x

vector or matrix

y

vector or matrix (same size as x)

Description

The erfinv function computes the inverse of the erf error function. Thus, erf(erfinv(x)) = x for all x such that -1 ≤ x ≤ 1 .

Examples

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

See also

  • cdfnor — cumulative distribution function normal distribution
  • erf — The error function.
  • erfc — The complementary error function.
  • erfcx — scaled complementary error function.

References

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:
Mon Jan 03 14:39:56 CET 2022