How to implement an BFGS optimisation in stata using mata for an equivalent R based optim function ?
The below is the equivalent R code
The below is the equivalent R code
Code:
optFunction <- function(param){ #Functions Logic Here } results = optim(start,optFunction,hessian=T,method="BFGS")
Comment