在 Rcpp 中使用 OptimLib 库时遇到错误。首先我sphere_fn
在线复制了函数,以便以后在 optim 函数中使用它。然而,这shere_fn
并没有奏效。
Error: can not initialize a member subobject of type `'arma::Col<double>*'with an lvalue of type 'SEXP'(aka'SEXPREC *').`
似乎问题出在 grad_out,但优化功能需要这种输入形式。
例如,使用以下命令调用 optim 算法:
bool cg(arma::vec& init_out_vals, std::function<double (const arma::vec& vals_inp, arma::vec* grad_out, void* opt_data)> opt_objfn, void* opt_data);
谁能帮我解决这个问题?
我的代码是:
#include <iostream>
#include <math.h> /* sqrt */
#define USE_RCPP_ARMADILLO
#include "optim.hpp"
// [[Rcpp::depends(RcppArmadillo)]]
using namespace Rcpp;
using namespace std;
// This is a simple example of exporting a C++ function to R. You can
// source this function into an R session using the Rcpp::sourceCpp
// function (or via the Source button on the editor toolbar). Learn
// more about Rcpp at:
//
// http://www.rcpp.org/
// http://adv-r.had.co.nz/Rcpp.html
// http://gallery.rcpp.org/
//
// [[Rcpp::export]]
double sphere_fn(const arma::vec& vals_inp, arma::vec* grad_out, void* opt_data)
{
double obj_val = arma::dot(vals_inp,vals_inp);
//
if (grad_out) {
*grad_out = 2.0*vals_inp;
}
//
return obj_val;
}