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.
我有一些数据作为 np.ndarray 加载,需要将其转换为 np.array。
有没有一种简单/快速的方法可以做到这一点,而不必以不同的方式重新加载数据?
我在教程中可以找到的所有信息似乎都是指一种类型的数组或另一种,而不是如何将数据从一种更改为另一种。
它们是相同的:numpy.array都是构造类型对象的函数numpy.ndarray。
numpy.array
numpy.ndarray
>>> import numpy >>> numpy.ndarray <type 'numpy.ndarray'> >>> numpy.array <built-in function array> >>> numpy.array([]) array([], dtype=float64) >>> isinstance(numpy.array([]), numpy.ndarray) True