Hi, I am in the process of converting my Matlab code to Julia. I see that there is a package called NLopt available but rather than spending time trying to decipher the syntax, I was wondering if anyone knows the syntax for doing something similar to Matlab's fminbnd, eg, I have something like the following in Matlab and I would like to know how to do it in Julia:
[x, value] = fminbnd(@(x) objectivefunc(x, params), lbA1, ubA1, optimset('TolX',tol)) Any help would be really appreciated. Thanks, Jude