I have Stata/SE 15.1 at SE 15.0 on Windows 64 bit on different computers. Now, when I run
estimation on 15.1 it returns an error message but the same thing works on 15.0 version. Why could this be the case?
I run the following command
This is the error message I receive:
I use same environtment, matsize and maxvar settings in both:
Code:
stintreg
I run the following command
Code:
stintreg `variables', interval(date0 date1) dist(weibull) vce(robust)
Fitting constant-only model:
(Mopt_drop_external() in lmataopt, compiled by Stata 15.1, is too new to be run by this version of Stata
and so was ignored)
<istmt>: 3499 Mopt_drop_external() not found
(Mopt_drop_external() in lmataopt, compiled by Stata 15.1, is too new to be run by this version of Stata
and so was ignored)
<istmt>: 3499 Mopt_drop_external() not found
r(3499);
(Mopt_drop_external() in lmataopt, compiled by Stata 15.1, is too new to be run by this version of Stata
and so was ignored)
<istmt>: 3499 Mopt_drop_external() not found
(Mopt_drop_external() in lmataopt, compiled by Stata 15.1, is too new to be run by this version of Stata
and so was ignored)
<istmt>: 3499 Mopt_drop_external() not found
r(3499);
Code:
clear clear matrix clear mata set matsize 10000 set maxvar 32760 clear matrix set type double capture log close set more off,permanently
Comment