gpt4 book ai didi

r - 如何将多个类添加到 Rcpp 中的对象?

转载 作者:行者123 更新时间:2023-12-04 11:06:21 25 4
gpt4 key购买 nike

我试过这个:

#include <Rcpp.h>
using namespace Rcpp;

// [[Rcpp::export]]
NumericVector difflag(NumericVector x, int lag) {
int n = x.size();
NumericVector out(n-lag);

for(int i=0; i<(n-lag); i++) {
out[i] = x[i+lag] - x[i];
}

out.attr("class") += "myclass";
return out;
}

它给了我一个错误:
all.cpp: In function ‘Rcpp::NumericVector difflag(Rcpp::NumericVector, int)’:
all.cpp:64:26: error: no match for ‘operator+=’ in ‘Rcpp::RObject::attr(const string&) const((* & std::basic_string<char>(((const char*)"class"), (*(const std::allocator<char>*)(& std::allocator<char>()))))) += "myclass"’
make: *** [all.o] Error 1

最佳答案

也许是这样的:

 CharacterVector classes = out.attr( "class" ) ;
classes.push_back( "myclass" ) ;
out.attr( "class" ) = classes ;

可能有空间用于通用 append功能。

关于r - 如何将多个类添加到 Rcpp 中的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19982395/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com