1

我对 R 相当陌生,我编写了一个函数,我正在使用 R 中的 nloptr 包进行优化。优化本身可以工作并收敛到一个解决方案,但是它以列表的形式呈现。无论如何要在输出的最后一个通道中提取最后一个“控件的最佳值”(如下所示):

称呼:

nloptr(x0 = x0, eval_f = Profit, opts = opts)
Minimization using NLopt version 2.4.0 
NLopt solver status: 4 ( NLOPT_XTOL_REACHED: Optimization stopped because xtol_rel or 
xtol_abs (above) was reached. )
Number of Iterations....: 103200 
Termination conditions:  xtol_rel: 1e-12    maxeval: 1e+06 
Number of inequality constraints:  0 
Number of equality constraints:    0 
Optimal value of objective function:  -5363.8525727957 
Optimal value of controls: 0.2736403 9.450551 1.122106 0.4090966
4

1 回答 1

2
res<-nloptr(...)  

res$solution将给出最优值控制的向量,

res$objective会给你目标函数的值。

于 2015-10-09T11:25:29.103 回答