对numpy中轴与维度的理解


Posted in Python onApril 18, 2018

NumPy's main object is the homogeneous multidimensional array. It is a table of elements (usually numbers), all of the same type, indexed by a tuple of positive integers. In NumPy dimensions are called axes. The number of axes is rank.

For example, the coordinates of a point in 3D space [1, 2, 1] is an array of rank 1, because it has one axis. That axis has a length of 3. In the example pictured below, the array has rank 2 (it is 2-dimensional). The first dimension (axis) has a length of 2, the second dimension has a length of 3.

[[ 1., 0., 0.],
 [ 0., 1., 2.]]

ndarray.ndim

数组轴的个数,在python的世界中,轴的个数被称作秩

>> X = np.reshape(np.arange(24), (2, 3, 4))
  # 也即 2 行 3 列的 4 个平面(plane)
>> X
array([[[ 0, 1, 2, 3],
    [ 4, 5, 6, 7],
    [ 8, 9, 10, 11]],
    [[12, 13, 14, 15],
    [16, 17, 18, 19],
    [20, 21, 22, 23]]])

shape函数是numpy.core.fromnumeric中的函数,它的功能是读取矩阵的长度,比如shape[0]就是读取矩阵第一维度的长度。

shape(x)

(2,3,4)

shape(x)[0]

2

或者

x.shape[0]

2

再来分别看每一个平面的构成:

>> X[:, :, 0]
array([[ 0, 4, 8],
    [12, 16, 20]])
>> X[:, :, 1]
array([[ 1, 5, 9],
    [13, 17, 21]])
>> X[:, :, 2]
array([[ 2, 6, 10],
    [14, 18, 22]])
>> X[:, :, 3]
array([[ 3, 7, 11],
    [15, 19, 23]])

也即在对 np.arange(24)(0, 1, 2, 3, ..., 23) 进行重新的排列时,在多维数组的多个轴的方向上,先分配最后一个轴(对于二维数组,即先分配行的方向,对于三维数组即先分配平面的方向)

reshpae,是数组对象中的方法,用于改变数组的形状。

二维数组

#!/usr/bin/env python 
# coding=utf-8 
import numpy as np 
 
a=np.array([1, 2, 3, 4, 5, 6, 7, 8]) 
print a 
d=a.reshape((2,4)) 
print d

对numpy中轴与维度的理解

三维数组

#!/usr/bin/env python 
# coding=utf-8 
import numpy as np 
 
a=np.array([1, 2, 3, 4, 5, 6, 7, 8]) 
print a 
f=a.reshape((2, 2, 2)) 
print f

对numpy中轴与维度的理解

形状变化的原则是数组元素不能发生改变,比如这样写就是错误的,因为数组元素发生了变化。

#!/usr/bin/env python 
# coding=utf-8 
import numpy as np 
 
a=np.array([1, 2, 3, 4, 5, 6, 7, 8]) 
print a 
print a.dtype 
e=a.reshape((2,2)) 
print e

对numpy中轴与维度的理解

注意:通过reshape生成的新数组和原始数组公用一个内存,也就是说,假如更改一个数组的元素,另一个数组也将发生改变。

#!/usr/bin/env python 
# coding=utf-8 
import numpy as np 
 
a=np.array([1, 2, 3, 4, 5, 6, 7, 8]) 
print a 
e=a.reshape((2, 4)) 
print e 
a[1]=100 
print a 
print e

对numpy中轴与维度的理解

Python中reshape函数参数-1的意思

a=np.arange(0, 60, 10)
>>>a
array([0,10,20,30,40,50])
>>>a.reshape(-1,1)
array([[0],
[10],
[20],
[30],
[40],
[50]])

如果写成a.reshape(1,1)就会报错

ValueError:cannot reshape array of size 6 into shape (1,1)

>>> a = np.array([[1,2,3], [4,5,6]])
>>> np.reshape(a, (3,-1)) # the unspecified value is inferred to be 2
array([[1, 2],
    [3, 4],
    [5, 6]])

-1表示我懒得计算该填什么数字,由python通过a和其他的值3推测出来。

# 下面是两张2*3大小的照片(不知道有几张照片用-1代替),如何把所有二维照片给摊平成一维
>>> image = np.array([[[1,2,3], [4,5,6]], [[1,1,1], [1,1,1]]])
>>> image.shape
(2, 2, 3)
>>> image.reshape((-1, 6))
array([[1, 2, 3, 4, 5, 6],
    [1, 1, 1, 1, 1, 1]])

以上这篇对numpy中轴与维度的理解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
学习python的几条建议分享
Feb 10 Python
python利用Guetzli批量压缩图片
Mar 23 Python
python3实现跳一跳点击跳跃
Jan 08 Python
python kmeans聚类简单介绍和实现代码
Feb 23 Python
利用python画出折线图
Jul 26 Python
Python Selenium 之关闭窗口close与quit的方法
Feb 13 Python
详解Python安装tesserocr遇到的各种问题及解决办法
Mar 07 Python
浅析python,PyCharm,Anaconda三者之间的关系
Nov 27 Python
python3 BeautifulSoup模块使用字典的方法抓取a标签内的数据示例
Nov 28 Python
对tensorflow中cifar-10文档的Read操作详解
Feb 10 Python
Python库skimage绘制二值图像代码实例
Apr 10 Python
基于python实现模拟数据结构模型
Jun 12 Python
Python实现购物车购物小程序
Apr 18 #Python
详谈python中冒号与逗号的区别
Apr 18 #Python
python logging日志模块以及多进程日志详解
Apr 18 #Python
详解Python3 中hasattr()、getattr()、setattr()、delattr()函数及示例代码数
Apr 18 #Python
Python中数组,列表:冒号的灵活用法介绍(np数组,列表倒序)
Apr 18 #Python
浅谈numpy数组中冒号和负号的含义
Apr 18 #Python
对python numpy数组中冒号的使用方法详解
Apr 17 #Python
You might like
创建数据库php代码 用PHP写出自己的BLOG系统
2010/04/12 PHP
PHP 数据结构 算法描述 冒泡排序 bubble sort
2011/07/10 PHP
php5.5中类级别的常量使用介绍
2013/10/02 PHP
PHP中feof()函数实例测试
2014/08/23 PHP
PHP制作图形验证码代码分享
2014/10/23 PHP
PHP curl模拟登录带验证码的网站
2015/11/30 PHP
在laravel5.2中实现点击用户头像更改头像的方法
2019/10/14 PHP
event.X和event.clientX的区别分析
2011/10/06 Javascript
Javascript跨域请求的4种解决方式
2013/03/17 Javascript
js监控IE火狐浏览器关闭、刷新、回退、前进事件
2014/07/23 Javascript
jQuery中:first选择器用法实例
2014/12/30 Javascript
javascript实用方法总结
2015/02/06 Javascript
JS设置cookie、读取cookie、删除cookie
2015/04/17 Javascript
angularjs学习笔记之三大模块(modal,controller,view)
2015/09/26 Javascript
jquery制作图片时钟特效
2020/03/30 Javascript
详解JavaScript基于面向对象之创建对象(2)
2015/12/10 Javascript
移动端基础事件总结与应用
2017/01/12 Javascript
Bootstrap实现翻页效果
2017/11/27 Javascript
详解angularjs跨页面传参遇到的一些问题
2018/11/01 Javascript
在VUE中使用lodash的debounce和throttle操作
2020/11/09 Javascript
Python re模块介绍
2014/11/30 Python
浅谈python数据类型及类型转换
2017/12/18 Python
Python编程中flask的简介与简单使用
2018/12/28 Python
给老师的道歉信
2014/01/11 职场文书
淘宝活动策划方案
2014/02/06 职场文书
父亲的菜园教学反思
2014/02/13 职场文书
财务支持类个人的自我评价
2014/02/14 职场文书
学习标兵获奖感言
2014/02/20 职场文书
小学模范班主任事迹材料
2014/05/13 职场文书
公司门卫工作职责
2014/06/28 职场文书
新闻学专业求职信
2014/07/28 职场文书
上班离岗检讨书
2014/09/10 职场文书
太行山上观后感
2015/06/05 职场文书
pycharm debug 断点调试心得分享
2021/04/16 Python
Python使用protobuf序列化和反序列化的实现
2021/05/19 Python
Nginx实现会话保持的两种方式
2022/03/18 Servers