You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
335 B
Plaintext
18 lines
335 B
Plaintext
9 months ago
|
program define polyser_ll
|
||
|
version 8.1
|
||
|
|
||
|
args lf rho
|
||
|
|
||
|
#delimit ;
|
||
|
qui replace `lf' =
|
||
|
ln(
|
||
|
(
|
||
|
norm( (__POLY2hi - `rho'*$ML_y1)/sqrt(1-`rho'*`rho') ) -
|
||
|
norm( (__POLY2lo - `rho'*$ML_y1)/sqrt(1-`rho'*`rho') )
|
||
|
) * normden($ML_y1)
|
||
|
)
|
||
|
;
|
||
|
#delimit cr
|
||
|
|
||
|
end
|