对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实现按当前日期(年、月、日)创建多级目录的方法
Apr 26 Python
Python 将Matrix、Dict保存到文件的方法
Oct 30 Python
PyQt5 QTableView设置某一列不可编辑的方法
Jun 25 Python
python下的opencv画矩形和文字注释的实现方法
Jul 09 Python
用python写一个定时提醒程序的实现代码
Jul 22 Python
PyTorch之图像和Tensor填充的实例
Aug 18 Python
解决 jupyter notebook 回车换两行问题
Apr 15 Python
python获取整个网页源码的方法
Aug 03 Python
Python pip install之SSL异常处理操作
Sep 03 Python
Python使用Selenium模拟浏览器自动操作功能
Sep 08 Python
Python爬虫实例之2021猫眼票房字体加密反爬策略(粗略版)
Feb 22 Python
Python机器学习之逻辑回归
May 11 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中利用XML技术构造远程服务(上)
2006/10/09 PHP
PHP 多进程 解决难题
2009/06/22 PHP
PHP引用返回用法示例
2016/05/28 PHP
Js event事件在IE、FF兼容性问题
2011/01/01 Javascript
不到30行JS代码实现Excel表格的方法
2014/11/15 Javascript
jQuery中$.get、$.post、$.getJSON和$.ajax的用法详解
2014/11/19 Javascript
了不起的node.js读书笔记之node.js中的特性
2014/12/22 Javascript
整理Javascript基础语法学习笔记
2015/11/29 Javascript
浏览器兼容性问题大汇总
2015/12/17 Javascript
快速掌握jQuery插件开发
2017/01/19 Javascript
JS实现异步上传压缩图片
2017/04/22 Javascript
使用Bootstrap打造特色进度条效果
2017/05/02 Javascript
基于Bootstrap模态对话框只加载一次 remote 数据的解决方法
2017/07/09 Javascript
原生JS实现的轮播图功能详解
2018/08/06 Javascript
微信小程序实现导航栏和内容上下联动功能代码
2020/06/29 Javascript
JavaScript实现多层颜色选项卡嵌套
2020/09/21 Javascript
Javascript中window.name属性详解
2020/11/19 Javascript
Java分治归并排序算法实例详解
2017/12/12 Python
python3使用scrapy生成csv文件代码示例
2017/12/28 Python
python3.6+django2.0开发一套学员管理系统
2018/03/03 Python
shell命令行,一键创建 python 模板文件脚本方法
2018/03/20 Python
Java与Python两大幸存者谁更胜一筹呢
2018/04/12 Python
Python中实现变量赋值传递时的引用和拷贝方法
2018/04/29 Python
CentOS 7 安装python3.7.1的方法及注意事项
2018/11/01 Python
Django实现单用户登录的方法示例
2019/03/28 Python
python中append实例用法总结
2019/07/30 Python
tensorflow模型保存、加载之变量重命名实例
2020/01/21 Python
Python常用断言函数实例汇总
2020/11/30 Python
Html5页面中的返回实现的方法
2018/02/26 HTML / CSS
美国乒乓球设备、配件和服装品牌:Killerspin
2020/06/07 全球购物
乡镇网格化管理实施方案
2014/03/23 职场文书
龙潭大峡谷导游词
2015/02/10 职场文书
centos8安装nginx1.9.1的详细过程
2021/08/02 Servers
SQL语法CONSTRAINT约束操作详情
2022/01/18 MySQL
MySQL数据库中的锁、解锁以及删除事务
2022/05/06 MySQL
JS精髓原型链继承及构造函数继承问题纠正
2022/06/16 Javascript