Bookmark and Share

Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.


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

st: scalar and calculations


From   "Tomas Lind" <[email protected]>
To   <[email protected]>
Subject   st: scalar and calculations
Date   Fri, 16 Apr 2010 16:11:49 +0200

Dear listers,


Scalar can´t do calculations?


I am trying to do some simulations. In a simplified version of my code, this
works (part of code shown) where n is sample size:

scalar v = r(mean) 
return scalar v2 = (`v'+2) * `n'		// No error messages

But this does not work:
scalar v = r(mean) 
return scalar v2 = (`v'^2) * `n'		// Error, ^2 invalid name


This is part of the full code and I get an error for ^2.
summarize ln_large
scalar v = (r(sd)^2)/2
return scalar mlk = exp(r(mean)) * (1 + ((`n'-1)/`n') +
 ( ((`n'-1)^3)/(`n'^2*(`n'+1)*2*1 ) ) * (`v'^2/(    2*1) )  +
 ( ((`n'-1)^5)/(`n'^3*(`n'+1)*(`n'+3)*3*2*1 ) ) * (`v'^3/(  3*2*1) )  + 
 ( ((`n'-1)^7)/(`n'^4*(`n'+1)*(`n'+3)*(`n'+5)*4*3*2*1 ) ) * (`v'^4/(4*3*2*1)
) )

How shall I do to calculate the value for mlk?


/Tomas


*
*   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–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index