时间:2021-05-22
flatten是numpy.ndarray.flatten的一个函数,其官方文档是这样描述的:
ndarray.flatten(order='C')
Return a copy of the array collapsed into one dimension.
Parameters:
order : {‘C', ‘F', ‘A', ‘K'}, optional
‘C' means to flatten in row-major (C-style) order. ‘F' means to flatten in column-major (Fortran- style) order. ‘A' means to flatten in column-major order if a is Fortran contiguous in memory, row-major order otherwise. ‘K' means to flatten a in the order the elements occur in memory. The default is ‘C'.
Returns:y : ndarray
A copy of the input array, flattened to one dimension.
即返回一个折叠成一维的数组。但是该函数只能适用于numpy对象,即array或者mat,普通的list列表是不行的。
例子:
1、用于array对象
from numpy import * >>>a=array([[1,2],[3,4],[5,6]]) ###此时a是一个array对象>>>aarray([[1,2],[3,4],[5,6]])>>>a.flatten()array([1,2,3,4,5,6])2、用于mat对象
3、但是该方法不能用于list对象
想要list达到同样的效果可以使用列表表达式:
4、用在矩阵
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
flatten()函数用法flatten是numpy.ndarray.flatten的一个函数,即返回一个一维数组。flatten只能适用于numpy对象,即a
flatten()函数用法flatten是numpy.ndarray.flatten的一个函数,即返回一个折叠成一维的数组。但是该函数只能适用于numpy对象,
numpy中有两个函数可以用来读取文件,主要是txt文件,下面主要来介绍这两个函数的用法第一个是loadtxt,其一般用法为numpy.loadtxt(fnam
来自《Python数据分析基础教程:Numpy学习指南(第2版)》Numpy改变数组维度的方法有:reshape()ravel()flatten()用元组设置维
numpy的delete是可以删除数组的整行和整列的,下面简单介绍和举例说明delete函数用法:numpy.delete(arr,obj,axis=None)