typecast
R中的Matlab函数的等价物是什么?在 Python 中?在朱莉娅?Matlab的typecast函数的描述在这里给出:typecast
示例,在 Matlab 中
X = uint32([1 255 256])
X =
1 255 256
Y = typecast(X, 'uint8') # little endian
Y =
1 0 0 0 255 0 0 0 0 1 0 0
谢谢
请注意:我不是在寻找与 Matlabcast
函数等效的 R / Python / Julia(例如,我不是在寻找as.integer
,as.character
在 R 中)
编辑:
感谢 Julia / R / Python 的回答。StackOverflow 允许我选择一个答案,但我对所有答案都投了赞成票。