Hello
I am using the function lnnormalden() in a Mata program. When I feed the function with a missing value for the mean and a non-missing value for the standard deviation, I get a "-1.#INF" as a result and not missing (see code below). Any idea why I get this result? How can I manipulate the "-1.#INF"? I couldn't find anything about this in the manual.
I am using Stata 13.1 on Windows 2008 server.
Thanks for your help
Christophe
I am using the function lnnormalden() in a Mata program. When I feed the function with a missing value for the mean and a non-missing value for the standard deviation, I get a "-1.#INF" as a result and not missing (see code below). Any idea why I get this result? How can I manipulate the "-1.#INF"? I couldn't find anything about this in the manual.
Code:
. mata: a = lnnormalden(.,3) . mata: a -1.#INF
Thanks for your help
Christophe
Comment