我的想法是将大量位写入文件(几乎64 * 800位)。它正在写入,但不是所有位。
控制台输出看起来像
[1。1. 0. ... 1. 0. 1.]
如果我减少要保存的位数,那么它将起作用。
我将在此处粘贴我的代码。此代码是对模拟到数字采样
y= function(x) # Inside this function I am generating binary values and stored to y
################ y is in numpy.ndarray form
################ x is a sine wave
f=open('filename.txt',"w+")
f.write(str(y)) #we have to convert the numpy.ndarray to str.
f.close()
当我打开filename.txt
文件时,它将二进制值显示为
[1。1. 0. ... 1. 0. 1.]
与控制台中的相同。
请帮助我解决此问题。我需要将所有位(64 * 800)保存在文件中
问题来源:stackoverflow
首先尝试将numpy数组转换为列表:
y = function(x) # Inside this function I am generating binary values and stored to y
################ y is in numpy.ndarray form
################ x is a sine wave
y_list = y.tolist() # Convert to python list
# use the with context manager and you don't need to call .close() explicitly
with open('filename.txt',"w+") as f:
f.write(str(y_list)) #we have to convert the numpy.ndarray to a list and then to str(y_list) which will write the entire bits.
回答来源:stackoverflow
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。