我是Rcpp的新手,我正在为此苦苦挣扎。我有一个函数返回一个包含2个对象的列表:向量中的max和argmax。我想从另一个函数的列表中仅检索max或argmax。我怎样才能做到这一点? 下面是一个示例:
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export]]
List max_argmax_cpp(NumericVector x){
double max = x[0];
int argmax = 0 + 1;
for(int i = 1; i < x.length(); i++){
if(x[i]>x[i-1]){
max = x[i];
argmax = i+1;
}
}
List Output;
Output["Max"] = max;
Output["Argmax"] = argmax;
return(Output);
}
// [[Rcpp::export]]
int max_only(NumericVector x){
int max = **only max from max_argmax_cpp(x)**;
return(max);
}
答案 0 :(得分:2)
在第二个示例中,您可以简单地调用原始函数并将其分配给List
,可以通过名称(或位置)来检索其元素:
#include <Rcpp.h>
using namespace Rcpp;
// [[Rcpp::export]]
List max_argmax_cpp(NumericVector x){
double max = x[0];
int argmax = 0 + 1;
for(int i = 1; i < x.length(); i++){
if(x[i]>x[i-1]){
max = x[i];
argmax = i+1;
}
}
List Output;
Output["Max"] = max;
Output["Argmax"] = argmax;
return(Output);
}
// [[Rcpp::export]]
double max_only(NumericVector x){
List l = max_argmax_cpp(x);
double max = l["Max"];
return(max);
}
/*** R
set.seed(42)
x <- runif(100)
max_argmax_cpp(x)
max_only(x)
*/
输出:
> set.seed(42)
> x <- runif(100)
> max_argmax_cpp(x)
$Max
[1] 0.7439746
$Argmax
[1] 99
> max_only(x)
[1] 0.7439746