gpt4 book ai didi

python - 在 MATLAB 和 Python 中转换为二进制

转载 作者:太空宇宙 更新时间:2023-11-03 13:46:53 28 4
gpt4 key购买 nike

我有一些 Matlab 代码,我正试图将其转换为 Python。

在 Matlab 中,代码将字符串转换为 double ,然后再转换为二进制数。

x = dec2bin(double(string), 8);

现在,该字符串包含数字、字母、小数点和逗号。 Matlab 对此进行转换没有问题。

Python 中有什么可以做到这一点吗?

我试过使用 bin(),首先将字符串更改为 float ,各种 Numpy 选项,例如:

x = numpy.base_repr(string, 2, 8)

numpy.binary_repr()

最佳答案

您可以轻松地做到这一点:

>>> string = "foo"
>>> res = [bin(ord(i)) for i in string]
['0b1100110', '0b1101111', '0b1101111']

同样的例子在matlab中给出了同样的结果:

>>> dec2bin(double('foo'), 8)
01100110
01101111
01101111

关于python - 在 MATLAB 和 Python 中转换为二进制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18198390/

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