|
Contents | Previous | Next | Subchapters |
| Syntax |
ierf(y) |
| See Also | erfinv , erf , inormal |
ginit
x = 0. : .01 : .99
gtitle("Inverse Error Function")
gplot(x, ierf(x))
returns the following plot:
erfinv instead of ierf.
If in Mlmode you enter
clear
x = 0. : .01 : .99;
omgtitle('Inverse Error Function');
plot(x, erfinv(x));
O-Matrix will draw the plot above.