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 レベルで符号なし整数を実装します。