numpy的squeeze函数

更新时间:2023-06-06 02:24:18 阅读: 评论:0

numpy的squeeze函数blog.csdn/zenghaitao0128/article/details/78512715
reshape函数:改变数组的维数(注意不是shape⼤⼩)
1. >>> e= np.arange(10)
2. >>> e
3. array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> e.reshape(1,1,10)
array([[[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]]])
1. >>> e.reshape(1,1,10)
2. array([[[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]]])
3. >>> e.reshape(1,10,1)
4. array([[[0],
5.        [1],
6.        [2],
7.        [3],
8.        [4],
9.        [5],
10.        [6],
omie
11.        [7],
12.        [8],
13.        [9]]])
squeeze 函数:从数组的形状中删除单维度条⽬,即把shape中为1的维度去掉
⽤法:numpy.squeeze(a,axis = None)
1.  1)a表⽰输⼊的数组;
2.  2)axis⽤于指定需要删除的维度,但是指定的维度必须为单维度,否则将会报错;
3.  3)axis的取值可为None 或 int 或 tuple of ints, 可选。若axis为空,则删除所有单维度的条⽬;
4.  4)返回值:数组
圣诞节前夕5.  5) 不会修改原数组;
1. >>> a = e.reshape(1,1,10)
level up2. >>> a
3. array([[[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]]])
4. >>> np.squeeze(a)
5. array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
古诗文翻译
体现在画图时
sunno
1. >>> plt.plot(a)
任务英文2. Traceback (most recent call last):
3.  File "<stdin>", line 1, in <module>
darksiders4.  File "C:\Python27\lib\site-packages\matplotlib\pyplot.py", line 3240, in plot
5.    ret = ax.plot(*args, **kwargs)
6.  File "C:\Python27\lib\site-packages\matplotlib\__init__.py", line 1710, in inner
7.    return func(ax, *args, **kwargs)
8.  File "C:\Python27\lib\site-packages\matplotlib\axes\_axes.py", line 1437, in plot
9.    for line in lf._get_lines(*args, **kwargs):
10.  File "C:\Python27\lib\site-packages\matplotlib\axes\_ba.py", line 404, in _grab_next_args
11.    for g in lf._plot_args(this, kwargs):
12.  File "C:\Python27\lib\site-packages\matplotlib\axes\_ba.py", line 384, in _plot_args
小学一年级语文课本13.    x, y = lf._xy_from_xy(x, y)
14.  File "C:\Python27\lib\site-packages\matplotlib\axes\_ba.py", line 246, in _xy_from_xy
wenchuan15.    "shapes {} and {}".format(x.shape, y.shape))
16. ValueError: x and y can be no greater than 2-D, but have shapes (1L,) and (1L, 1L, 10L)
17. >>> plt.plot(np.squeeze(a))
18. [<matplotlib.lines.Line2D object at 0x00000000146CD940>]
19. >>> plt.show()tensions
1. >>> np.squeeze(a).shape
2. (10L,)
通过np.squeeze()函数转换后,要显⽰的数组变成了秩为1的数组,即(10,)参考:blog.csdn/zenghaitao0128/article/details/78512715

本文发布于:2023-06-06 02:24:18,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/90/135428.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:数组   维度   删除   函数
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图