ml_bhhhs.ado

来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· ADO 代码 · 共 28 行

ADO
28
字号
*! version 6.0.1  05nov1998
program define ml_bhhhs
	version 6
	tempvar ll_plus ll_subt

	local i 1
	while `i' <= $ML_k {
					/*  calculate stepsize -- delta
					 *  ll_plus = f(X_i+delta) and 
					 *  ll_subt = f(X_i-delta) */

		noi ml_adjs erd `i' `ll_plus' `ll_subt'

					/* gradient calculation */

		qui gen double ``i'' = (`ll_plus' - `ll_subt') /	/*
			*/  (2*r(step)) if $ML_samp

		local i = `i' + 1

	}

end
exit


Computes and returns score variables for method rdu0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?