gpt4 book ai didi

Rcpp:如何获取 Rcpp::Nullable NumericVector 的大小

转载 作者:行者123 更新时间:2023-12-02 03:57:17 30 4
gpt4 key购买 nike

我想将一个R函数翻译成Rcpp,一个简单的测试代码如下,但我不知道如何处理默认设置为NULL的参数。

test<- function(t=NULL,tmax=NULL,tmin=NULL){
if(is.null(t)){
yout=(tmax-tmin)*(tmin+tmax)
}else{
yout=2*t
}
return(yout)
}

test(tmax=1:3,tmin=0:2)




// [[Rcpp::export]]
NumericVector cpptest(Rcpp::Nullable<Rcpp::NumericVector> t=R_NilValue,
Rcpp::Nullable<Rcpp::NumericVector> tmax=R_NilValue,
Rcpp::Nullable<Rcpp::NumericVector> tmin=R_NilValue){
int N=0;
if(t.isNotNull()) {
N=t.size(); /* which show a error*/
}else{
N=tmax.size(); /* which show a error*/
}
NumericVector yout=NumericVector(N);

if(t.isNotNull()) {
for(i=0;i<N,i++){
yout[i]=2*t[i]
}
}else{
for(i=0;i<N,i++){
yout[i]=(tmax[i]-tmin[i])*(tmin[i]+tmax[i])
}
}
return(yout)
}

最佳答案

而不是调用,例如.size()直接在对象上,就像您在这里所做的那样 - N = t.size(); -- 您需要将其转换为基础类型。例如,

#include <Rcpp.h>
using namespace Rcpp;

// [[Rcpp::export]]
int nullable_size(Nullable<NumericVector> x_ = R_NilValue)
{
if (x_.isNotNull()) {
NumericVector x(x_.get());
return x.size();
}
warning("argument x_ is NULL");
return -1;
}

/*** R

nullable_size(rnorm(5))
# [1] 5

nullable_size(NULL)
# [1] -1
# Warning message:
# In .Primitive(".Call")(<pointer: 0x000000006aa417a0>, x_) :
# argument x_ is NULL

*/

正如 Dirk 所指出的,使用 .get()这里并不是绝对必要的——使用 NumericVector x(x_);将调用 Nullable<>::operator SEXP() 并且工作同样出色。


此外,请以后更好地格式化您的代码。

关于Rcpp:如何获取 Rcpp::Nullable NumericVector 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43388698/

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