gpt4 book ai didi

r - 如何在 Rcpp 中打印原始值

转载 作者:行者123 更新时间:2023-12-04 22:39:43 28 4
gpt4 key购买 nike

#include <Rcpp.h>
using namespace Rcpp;

// [[Rcpp::export]]
void print_raw(RawVector x) {

for (int i = 0; i < x.size(); i++) {
Rcout << x[i] << " ";
}
Rcout << std::endl;
}

/*** R
x <- as.raw(0:10)
print(x)
print_raw(x)
*/

我希望 Rcpp 以与 R 相同的方式打印“原始”类型的值。
是否可以?使用当前代码,我只得到一个空行。

最佳答案

您需要将各个值转换为 int 1 第一。此外,为了获得十六进制的零填充输出,您需要使用 <iomanip> 职能。

使用范围- for循环,转换可以在循环变量的初始化中隐式发生:

// [[Rcpp::export]]
void print_raw(RawVector x) {
for (int v : x) {
Rcout << std::hex << std::setw(2) << std::setfill('0') << v << ' ';
}
Rcout << '\n';
}

1 来自 Rbyte , which is a typedef for unsigned char .

关于r - 如何在 Rcpp 中打印原始值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51169994/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com