目标函数结果:R的Nloptr vs Excel的GRG

时间:2016-07-08 16:50:26

标签: r excel nonlinear-optimization

对于我所拥有的非线性最小化优化问题,与nloptr(73)相比,我在Excel(15)中获得了更好的目标函数值。

nloptr设置为:

$.ajax({
  url: "/ABC/AddST/",
  data: {
    "username": $("#username").val(),
    "fullname": $("#fullname").val()
  },
  type: "POST"
}).success(function(data) {
  swal({
    title: "Done!",
    text: "Sales Team was successfully added!",
    type: "success"
  }, function() {
    window.location.href = '/ABC/STList';
  });
}).error(function(data) {
  swal("Oops", "We couldn't connect to the server!", "error");
});

正如所观察到的那样,即使最大评估为10000,与Excel的GRG相比,目标函数也是如此,它在200次迭代中解决了它。

有没有办法从nloptr改善目标函数值?我是R的新手,所以也许你可以对它有所了解。

0 个答案:

没有答案