Setup initial file structure

This commit is contained in:
2024-03-05 11:20:30 +01:00
parent 6183a6391b
commit 70e53e7760
708 changed files with 277486 additions and 0 deletions

View File

@ -0,0 +1,20 @@
*! Log likelihood for confa: linear form; part of confa suite; 23 Apr 2009
program define confa_lfm
args lnf $CONFA_args
* $CONFA_args contains the names of the equations, but
* we need the variable names
gettoken lnf allthenames : 0
tempvar lnl
qui g double `lnl' = .
mata: CONFA_NormalLKHDrMiss( "`allthenames'", "`lnl'")
qui replace `lnf' = `lnl'
if $CONFA_loglevel > 3 li `lnl'
end
exit