Nom
erfinv — fonction erreur inverse
Séquence d'appel
y = erfinv(x)
Paramètres
- x
vecteur réel
- y
vecteur réel (de même taille que x)
Description
erfinv calcule l'inverse de la fonction d'erreur
erf.
x = erfinv(y) vérifie y = erf(x),
-1 <= y < 1, -inf <= x <= inf.
Exemples
x=linspace(-0.99,0.99,100);
y=erfinv(x);
plot2d(x,y)
norm(x-erf(y),'inf')
Références
Milton Abramowitz and Irene A. Stegun, eds. Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical Tables. New York: Dover, 1972.