Member of the advanced class.
y = erfinv(x)
Computes the inverse of the error function associated with a normal distribution. y = erfinv(x) is equivalent to x = erf(y).
| Name | Description |
| x | Specifies error function values. x is a real matrix with elements in the interval [-1, 1]. |
| Name | Description |
| y | Returns the value of the inverse error function of x. |
% Compute the inverse error function at 0.386:
Y = erfinv(0.386)
% Show the form of the inverse error function:
X = 0:0.01:0.9;
Y = erfinv(X);
plot(X, Y)