require(inline) func <- cxxfunction(, 'return Rcpp::wrap( qnorm(0.95,0.0,1.0) );' ,plugin="Rcpp")
error: there is no corresponding function to call 'qnorm5 (double, int, int)
require(inline) func <- cxxfunction(, 'return Rcpp::wrap( qnorm(0.95, 0.0, 1.0, 1, 0) );' ,plugin="Rcpp")
error: there is no corresponding function to call 'qnorm5 (double, double, double, int, int)
require(inline) code <-' double a = qnorm(0.95, 0.0, 1.0); return Rcpp::wrap( a ); ' func <- cxxfunction(, code ,plugin="Rcpp") func()
error: there is no corresponding function to call "qnorm5 (double, double, double)
How to use qnorm for rcpp?
source share