Guest User

Untitled

a guest
Oct 18th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. mata:
  2. T=600 //number of markets
  3. K_S=1 //number of variables with stochastic coefficients
  4. R=200 //number of random draws
  5. st_matrix("T", T)
  6. //pointers to the market specific random draws:
  7. V=J(T,1,NULL) // T by 1 0 matrix
  8.  
  9. for(t=1;t<=T;t++){
  10. V[t]=(rnormal(K_S,R,0,1)) //dimension K_S x R
  11. }
  12. end
Add Comment
Please, Sign In to add comment