Statalist


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: st: Mata in an rclass program to bootstrap


From   Maarten buis <[email protected]>
To   stata list <[email protected]>
Subject   RE: st: Mata in an rclass program to bootstrap
Date   Sun, 19 Jul 2009 13:52:45 +0000 (GMT)

--- Nelson, Carl wrote:
<snip>
> Is there a proper way to embed mata in a program to bootstrap
> that will not create this error?

Here is a silly example. More general advise can be found 
here: -help m1_ado-

*-------------- begin example ------------
mata: mata clear
sysuse auto, clear

mata:
void foo(string scalar b) {
	bb =st_matrix(b)
	bb = 2:*bb
	st_matrix("b", bb)
}
end

program drop _all
program define silly, rclass
	reg mpg foreign
	matrix b = e(b)
	mata: foo("b")
	return scalar b1 = el(b,1,1)
	return scalar b2 = el(b,1,2)
end
bootstrap b1=r(b1) b2=r(b2), reps(100): silly
*-------------- end example -----------------

Hope this helps,
Maarten

-----------------------------------------
Maarten L. Buis
Institut fuer Soziologie
Universitaet Tuebingen
Wilhelmstrasse 36
72074 Tuebingen
Germany

http://home.fsw.vu.nl/m.buis/
-----------------------------------------


      

*
*   For searches and help try:
*   http://www.stata.com/help.cgi?search
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index