我是使用 Rcpp 的初学者,我希望在计算分位数后更快地选择向量值。
在下面的示例中,当手动输入由 qnorm 函数计算的上下限(函数 val.sel.1)时,它运行良好。然而,当这些限制来自先前的计算时,不会获得结果向量(函数 val.sel.2)。我想知道我对论点的使用有什么问题。提前感谢您的帮助。阿兰
R> src.1 <-'
NumericVector x = xx, p = prob;
int n = p.size() ;
int m = x.size() ;
NumericVector res(n), quant ;
for( int i=0; i<n; i++) res[i] = R::qnorm(p[i], Rcpp::mean(x), Rcpp::sd(x), 1, 0) ;
for( int i=0; i<m; i++) {
if (x[i] > 35.45295 && x[i] < 83.34705) quant.push_back(x[i]);
}
return wrap(quant) ;
'
R> val.sel.1 <- cxxfunction(signature(xx="numeric", prob="numeric"), plugin='Rcpp', body=src.1)
R> x <- c(77, 95, 16, 54, 63, 93, 44, 88, 25, 39)
R> val.sel.1(x, prob=c(0.2,0.8)) # [1] 77 54 63 44 39
R> src.2 <-'
NumericVector x = xx, p = prob;
int n = p.size() ;
int m = x.size() ;
NumericVector res(n), quant ;
for( int i=0; i<n; i++) res[i] = R::qnorm(p[i], Rcpp::mean(x), Rcpp::sd(x), 1, 0) ;
for( int i=0; i<m; i++) {
if (x[i] > res[1] && x[i] < res[2]) quant.push_back(x[i]);
}
return wrap(quant) ;
'
R> val.sel.2 <- cxxfunction(signature(xx="numeric",prob="numeric"),plugin='Rcpp', body=src.2)
R> val.sel.2(x, prob=c(0.2,0.8)) # numeric(0)