Are there any implementations of the inverse error function for Stata?
-
Login or Register
- Log in with
display invnormal((.2 + 1) / 2) / sqrt(2)
. mata : real matrix inverror(real matrix x) return( invnormal((x:+1)/2)/sqrt(2) )
. mata : inverror((.2,.42,.73))
1 2 3
+-------------------------------------------+
1 | .1791434546 .3913020878 .7799830136 |
+-------------------------------------------+
Comment