gpt4 book ai didi

numpy下的flatten()函数用法详解

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章numpy下的flatten()函数用法详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

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对象 。

?
1
2
3
4
5
6
7
from numpy import *
 
>>>a = array([[ 1 , 2 ],[ 3 , 4 ],[ 5 , 6 ]]) ###此时a是一个array对象
>>>a
array([[ 1 , 2 ],[ 3 , 4 ],[ 5 , 6 ]])
>>>a.flatten()
array([ 1 , 2 , 3 , 4 , 5 , 6 ])

2、用于mat对象 。

?
1
2
3
4
>>> a = mat([[ 1 , 2 , 3 ],[ 4 , 5 , 6 ]])
>>> a
matrix([[ 1 , 2 , 3 ],
   [ 4 , 5 , 6 ]])<br>>>> a.flatten()<br>matrix([[ 1 , 2 , 3 , 4 , 5 , 6 ]])<br>

3、但是该方法不能用于list对象 。

?
1
2
3
4
5
6
>>> a = [[ 1 , 2 , 3 ],[ 4 , 5 , 6 ],[ 'a' , 'b' ]]
[[ 1 , 2 , 3 ], [ 4 , 5 , 6 ], [ 'a' , 'b' ]]
>>> a.flatten()      ###报错
traceback (most recent call last):
file "<stdin>" , line 1 , in <module>
attributeerror: 'list' object has no attribute 'flatten'

想要list达到同样的效果可以使用列表表达式:

?
1
2
>>> [y for x in a for y in x]
[ 1 , 2 , 3 , 4 , 5 , 6 , 'a' , 'b' ]

4、用在矩阵 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
>>> a = [[ 1 , 3 ],[ 2 , 4 ],[ 3 , 5 ]]
>>> a = mat(a)
>>> y = a.flatten()
>>> y
matrix([[ 1 , 3 , 2 , 4 , 3 , 5 ]])
>>> y = a.flatten().a
>>> y
array([[ 1 , 3 , 2 , 4 , 3 , 5 ]])
>>> shape(y)
( 1 , 6 )
>>> shape(y[ 0 ])
( 6 ,)
>>> y = a.flatten().a[ 0 ]
>>> y
array([ 1 , 3 , 2 , 4 , 3 , 5 ])

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:https://www.cnblogs.com/itdyb/p/5796834.html 。

最后此篇关于numpy下的flatten()函数用法详解的文章就讲到这里了,如果你想了解更多关于numpy下的flatten()函数用法详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com