属性の内容:配列要素のデータの型
>>> a = np.ones(3, dtype=np.int32)
>>> a.dtype
dtype('int32')
>>> b = np.ones(3, dtype=np.float64)
>>> b.dtype
dtype('float64')
関連項目 関数ndarray.astypeの使い方の例
属性の内容:配列要素のデータの型
>>> a = np.ones(3, dtype=np.int32)
>>> a.dtype
dtype('int32')
>>> b = np.ones(3, dtype=np.float64)
>>> b.dtype
dtype('float64')
関連項目 関数ndarray.astypeの使い方の例