numpy数组坐标轴问题解决

作者:勤奋的大熊猫 时间:2022-10-23 02:48:12 

不知道大家有没有一种感觉,每次当使用numpy数组的时候坐标轴总是傻傻分不清楚,然后就会十分的困惑,每次运算都需要去尝试好久才能得出想要的结果。这里我们来简单解释一下numpy中一维,二维,三维数组的坐标轴问题。

首先我们讨论一维的情况,代码如下:

import numpy as np

class Debug:
    def __init__(self):
        self.array1 = np.array([0, 1, 2])
        self.array2 = np.array([[0], [1], [2]])

    def mainProgram(self):
        print("The value of array1 is: ")
        print(self.array1)
        print("The shape of array1 is: ")
        print(self.array1.shape)
        print("The value of array2 is: ")
        print(self.array2)
        print("The shape of array2 is: ")
        print(self.array2.shape)

if __name__ == '__main__':
    main = Debug()
    main.mainProgram()
"""
The value of array1 is: 
[0 1 2]
The shape of array1 is: 
(3,)
The value of array2 is: 
[[0]
 [1]
 [2]]
The shape of array2 is: 
(3, 1)
"""

从上面的结果我们可以看到,一维横数组沿着横向排列,我们可以认定为x轴向,它的数组大小为(3,),一维列数组沿着纵向排列,我们可以认为是y轴方向,它的大小为(3, 1),我们可以从左向右,看出第二个参数代表的是横向上的参数个数,第一个参数代表的是纵向上的参数个数,因此我们可以将横向数组的大小(3,)理解为(,3)更为合适。

接下来我们研究一下二维数组,哪个参数对应的是横坐标,哪个参数对应的是纵坐标。
代码如下:

import numpy as np

class Debug:
    def __init__(self):
        self.array1 = np.ones((2, 3))
        self.array2 = np.ones((3, 2))

    def mainProgram(self):
        print("The value of array1 is: ")
        print(self.array1)
         print("The shape of array1 is: ")
        print(self.array1.shape)
        print("The value of array2 is: ")
        print(self.array2)
        print("The shape of array2 is: ")
        print(self.array2.shape)

if __name__ == '__main__':
    main = Debug()
    main.mainProgram()

"""
The value of array1 is: 
[[1. 1. 1.]
 [1. 1. 1.]]
The shape of array1 is: 
(2, 3)
The value of array2 is: 
[[1. 1.]
 [1. 1.]
 [1. 1.]]
The shape of array2 is: 
(3, 2)
"""

从上面的结果我们可以看出,从左向右,第一个参数代表的是(row), 第二个参数代表的是列(column)。我们知道numpy中默认的是笛卡尔坐标系,所以横向为x,纵向为y,具体的请看坐标系(超链接点击跳转查看)。所以对self.array1来说,定义时输入的数组大小的(2, 3)代表沿着x轴拥有3个值,沿着y轴拥有2个值。对比上述得到的结果与我们在一维情况中推断得到的结果,证明我们的理解是正确的。

接着我们讨论三维的情况:代码如下:

import numpy as np

class Debug:
    def __init__(self):
        self.array1 = np.ones((2, 3, 4))

    def mainProgram(self):
        print("The value of array1 is: ")
        print(self.array1)
        print("The shape of array1 is: ")
        print(self.array1.shape)

if __name__ == '__main__':
    main = Debug()
    main.mainProgram()

"""
The value of array1 is: 
[[[1. 1. 1. 1.]
  [1. 1. 1. 1.]
  [1. 1. 1. 1.]]

 [[1. 1. 1. 1.]
  [1. 1. 1. 1.]
  [1. 1. 1. 1.]]]
The shape of array1 is: 
(2, 3, 4)
"""

不难发现,沿着x轴方向拥有4个值,沿着y轴方向拥有3个值,沿着z轴方向拥有2个值。

综上所述,在numpy数组中,定义三维数组时,从左向右, 第一个参数为z轴,第二个参数为y轴,第三个参数为x轴,即(z, y, x)。 对于各个坐标轴在空间中的朝向问题,建议阅读numpy数组坐标轴。之后我们会进一步探讨numpy模块中的其他与坐标轴相关的函数。

来源:https://blog.csdn.net/u011699626/article/details/108999206

标签:numpy,数组,坐标轴
0
投稿

猜你喜欢

  • 详解Go 依赖管理 go mod tidy

    2024-05-02 16:25:17
  • node.js+Ajax实现获取HTTP服务器返回数据

    2024-05-13 09:29:07
  • Python正则表达式 r'(.*) are (.*?) .*'的深入理解

    2022-02-28 09:40:48
  • Django修改端口号与地址的三种方式

    2023-06-22 00:48:27
  • python包合集shutil示例代码详解

    2022-03-28 12:04:27
  • Python JSON编解码方式原理详解

    2023-10-24 10:33:33
  • JS实现普通轮播图特效

    2024-04-17 10:19:52
  • Python locust工具使用详解

    2021-11-04 04:04:56
  • Oracle动态交叉表生成

    2010-07-27 12:55:00
  • Go之interface的具体使用

    2024-02-08 18:58:41
  • django 前端页面如何实现显示前N条数据

    2023-06-07 10:50:33
  • 10个ASP网页制作技巧

    2007-09-24 13:12:00
  • python3 queue多线程通信

    2022-09-20 08:41:05
  • Oracle数据操作和控制语言详解

    2008-01-16 19:18:00
  • Session的工作机制详解和安全性问题(PHP实例讲解)

    2024-05-03 15:29:39
  • Python实现将Word表格嵌入到Excel中

    2022-02-10 06:21:49
  • Python子类继承父类构造函数详解

    2023-02-27 09:13:03
  • Python数据类型之Set集合实例详解

    2023-08-14 13:41:11
  • python人工智能使用RepVgg实现图像分类示例详解

    2021-04-15 21:36:42
  • 关于mysql调用新手们常犯的11个错误总结

    2024-01-22 15:21:45
  • asp之家 网络编程 m.aspxhome.com