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.
如何将 unsigned int 类型的变量从 C 函数返回到 R?信息以变量位编码。我可以在 C 中提取此信息,但我更愿意在 R 中执行此操作。
由于 R 没有带符号/无符号类型,因此您必须将您的类型unsigned int转换为intor double。
unsigned int
int
double
或者创建一个新的 R 类型以在 R 级别实现无符号整数。