Solved – n R optimization package that can handle integer constraints and non-linear objective functions

algorithmsfinancegenetic algorithmsoptimizationr

I am looking for an optimization routine that can optimize a non-linear objective function with integer constraints. NuOPT for S-Plus, CPLEX, or Matlab include powerful optimization packages for these kinds of optimizations?

Is there any similar kind of package for R? Or is there an optimization procedure (perhaps genetic algorithms) that can solve this problem?

For what it's worth I'm performing a portfolio mean-variance optimization.

Best Answer

The most recent issue of The R Journal contains Differential Evolution with DEoptim, which illustrates how to use DEoptim for portfolio optimization.

Related Question