如何在Rcpp中将0f NumericMatrix类型的行更改为IntegerVector?

时间:2013-07-01 02:59:54

标签: rcpp

我在NumericMatrix中定义Rcpp A。第一列存储行号(整数值)。如何将第一列更改为IntegerVector

1 个答案:

答案 0 :(得分:1)

你不能。

NumericMatrix也是NumericVector,其数据blob中不能包含不同类型的数据。

您可能需要将IntegerVector放入A.attr("somewhere")