Hi, a simple question
I need to calculate the inverse cumulative standard normal distribution in a column vector.
in Stata, would be:
however , I could not find a equivalent:
I am expecting:
Is iterating with
the only way to go ?
I need to calculate the inverse cumulative standard normal distribution in a column vector.
in Stata, would be:
Code:
. di invnormal(0.18) -.91536509 . di invnormal(0.09) -1.340755
Code:
. mata
------------------------------------------------- mata (type end to exit) --------------------------------------------------------------------------------------------------------------
: a=(0.18\0.09)
: a
1
+-------+
1 | .18 |
2 | .09 |
+-------+
: end
Code:
: a
1 2
+-----------------+
1 | .18 -.91 |
2 | .09 -1.34 |
+-----------------+
Code:
:stata("....")

Comment