「Numpy」タプルからndarrayに変更するサンプル
書式
タプル名 = (要素1,要素2,xxx)
np.asarrayを利用してタプルからndaarayに変更します。
使用例
import numpy as np lst = (51,62,73,84) res = np.asarray(lst) print (res)
実行結果
[51 62 73 84]
Coding Changes the World
書式
タプル名 = (要素1,要素2,xxx)
np.asarrayを利用してタプルからndaarayに変更します。
使用例
import numpy as np lst = (51,62,73,84) res = np.asarray(lst) print (res)
実行結果
[51 62 73 84]