标签: rcpp
我在NumericMatrix中定义Rcpp A。第一列存储行号(整数值)。如何将第一列更改为IntegerVector?
NumericMatrix
Rcpp
IntegerVector
答案 0 :(得分:1)
你不能。
NumericMatrix也是NumericVector,其数据blob中不能包含不同类型的数据。
NumericVector
您可能需要将IntegerVector放入A.attr("somewhere")。
A.attr("somewhere")