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.
以下は、行列の浮動値をテキストファイルに保存します
numpy.savetxt('bool',mat,fmt='%f',delimiter=',')
ブール行列を保存するには? ブール行列を保存するための fmt は何ですか?
正解です。boolは整数なので、いつでも2つの間を移動できます。
import numpy as np arr = np.array([True, True, False, False]) np.savetxt("test.txt", arr, fmt="%5i")
これにより、1 100のファイルが得られます