Might someone be so kind as to remind/instruct me of the Stata and Mata defaults that yield these seemingly discordant results?
Results
Code:
loc x=1/11 di 11*`x'==1 mata x=1/11 11*x==1 end
Results
Code:
. loc x=1/11 . di 11*`x'==1 0 . . mata ------------------------------------------------- mata (type end to exit) ------------------- : x=1/11 : 11*x==1 1 : end ---------------------------------------------------------------------------------------------

Comment