Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在中定义了一个NumericMatrixA。Rcpp第一列存储行号(整数值)。如何将第一列更改为IntegerVector?
NumericMatrix
Rcpp
IntegerVector
你不能。
这NumericMatrix也是一个NumericVector不能在其数据 blob 中包含不同类型数据的数据。
NumericVector
也许您需要的是IntegerVector放入A.attr("somewhere").
A.attr("somewhere")