对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基础教程之popen函数操作其它程序的输入和输出示例
Feb 10 Python
Python程序设计入门(3)数组的使用
Jun 16 Python
非递归的输出1-N的全排列实例(推荐)
Apr 11 Python
Python微信库:itchat的用法详解
Aug 14 Python
浅析python协程相关概念
Jan 20 Python
python flask中静态文件的管理方法
Mar 20 Python
使用celery执行Django串行异步任务的方法步骤
Jun 06 Python
浅谈python 中类属性共享的问题
Jul 02 Python
利用Python复制文件的9种方法总结
Sep 02 Python
Django中文件上传和文件访问微项目的方法
Apr 27 Python
python实现猜拳游戏项目
Nov 30 Python
Python面向对象之成员相关知识总结
Jun 24 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开发的一些注意点总结
2010/10/12 PHP
Fatal error: session_start(): Failed to initialize storage module: files问题解决方法
2014/05/04 PHP
php使用pdo连接报错Connection failed SQLSTATE的解决方法
2014/12/15 PHP
php图像验证码生成代码
2017/06/08 PHP
yii2.0框架使用 beforeAction 防非法登陆的方法分析
2019/09/11 PHP
新浪中用来显示flash的函数
2007/04/02 Javascript
JavaScript 核心参考教程 内置对象
2009/10/13 Javascript
window.location.hash 属性使用说明
2010/03/20 Javascript
return false,对阻止事件默认动作的一些测试代码
2010/11/17 Javascript
jQuery实现跟随鼠标运动图层效果的方法
2015/02/02 Javascript
浅谈javascript实现八大排序
2015/04/27 Javascript
javascript实现简单的进度条
2015/07/02 Javascript
javascript实现二级级联菜单的简单制作
2015/11/19 Javascript
js实现页面a向页面b传参的方法
2016/05/29 Javascript
JS图片放大效果简单实现代码
2016/09/08 Javascript
JS倒计时实例_天时分秒
2017/08/22 Javascript
vue树形结构获取键值的方法示例
2018/06/21 Javascript
详解小程序毫秒级倒计时(适用于拼团秒杀功能)
2019/05/05 Javascript
[00:14]PWL:老朋友Mushi拍VLOG与中国玩家问好
2020/11/04 DOTA
python 字典(dict)遍历的四种方法性能测试报告
2014/06/25 Python
Python 含参构造函数实例详解
2017/05/25 Python
python 表达式和语句及for、while循环练习实例
2017/07/07 Python
浅谈python函数之作用域(python3.5)
2017/10/27 Python
Python Pandas批量读取csv文件到dataframe的方法
2018/10/08 Python
Python数据分析:手把手教你用Pandas生成可视化图表的教程
2018/12/15 Python
Django使用 Bootstrap 样式修改书籍列表过程解析
2019/08/09 Python
Python3 把一个列表按指定数目分成多个列表的方式
2019/12/25 Python
python 爬取马蜂窝景点翻页文字评论的实现
2020/01/20 Python
Python Unittest原理及基本使用方法
2020/11/06 Python
口腔医学技术应届生求职信
2013/11/09 职场文书
全国优秀教师事迹材料
2014/08/26 职场文书
管辖权异议上诉状
2015/05/23 职场文书
2016学校先进党组织事迹材料
2016/02/29 职场文书
导游词之广西漓江
2019/11/02 职场文书
Vue和Flask通信的实现
2021/05/19 Vue.js
【海涛教你打DOTA】虚空假面第一视角骨弓3房29杀
2022/04/01 DOTA