详解Numpy扩充矩阵维度(np.expand_dims, np.newaxis)和删除维度(np.squeeze)的方法

作者:* star * 时间:2023-02-13 22:24:24 

在操作矩阵的时候,不同的接口对于矩阵的输入维度要求不同,输入可能为1-D,2-D,3-D等等。下面介绍一下使用Numpy进行矩阵维度变更的相关方法。主要包括以下几种:

1、np.newaxis扩充矩阵维度

2、np.expand_dims扩充矩阵维度

3、np.squeeze删除矩阵中维度大小为1的维度

np.newaxis,np.expand_dims扩充矩阵维度:


import numpy as np

x = np.arange(8).reshape(2, 4)
print(x.shape)

# 添加第0维,输出shape -> (1, 2, 4)
x1 = x[np.newaxis, :]
print(x1.shape)

# 添加第1维, 输出shape -> (2, 1, 4)
x2 = np.expand_dims(x, axis=1)
print(x2.shape)

输出结果:

(2, 4)
(1, 2, 4)
(2, 1, 4)

np.squeeze降低矩阵维度:


"""
squeeze 函数:从数组的形状中删除单维度条目,即把shape中为1的维度去掉
用法:numpy.squeeze(a,axis = None)
 1)a表示输入的数组;
 2)axis用于指定需要删除的维度,但是指定的维度必须为单维度,否则将会报错;
 3)axis的取值可为None 或 int 或 tuple of ints, 可选。若axis为空,则删除所有单维度的条目;
 4)返回值:数组
 5) 不会修改原数组;
"""
import numpy as np
print("#" * 40, "原始数据", "#" * 40)
x = np.arange(10).reshape(1, 1, 10, 1)
print(x.shape)
print(x)

print("#" * 40, "去掉axis=0这个维度", "#" * 40)
x_squeeze_0 = np.squeeze(x, axis=0)
print(x_squeeze_0.shape, x_squeeze_0)

print("#" * 40, "去掉axis=3这个维度", "#" * 40)
x_squeeze_3 = np.squeeze(x, axis=3)
print(x_squeeze_3.shape, x_squeeze_3)

print("#" * 40, "去掉axis=0, axis=1这两个维度", "#" * 40)
x_squeeze_0_1 = np.squeeze(x, axis=(0, 1))
print(x_squeeze_0_1.shape, x_squeeze_0_1)

print("#" * 40, "去掉所有1维的维度", "#" * 40)
x_squeeze = np.squeeze(x)
print(x_squeeze.shape, x_squeeze)

print("#" * 40, "去掉不是1维的维度,抛异常", "#" * 40)
try:
x_squeeze = np.squeeze(x, axis=2)
print(x_squeeze.shape, x_squeeze)
except Exception as e:
print(e)

输出结果:

######################################## 原始数据 ########################################
(1, 1, 10, 1)
[[[[0]
   [1]
   [2]
   [3]
   [4]
   [5]
   [6]
   [7]
   [8]
   [9]]]]
######################################## 去掉axis=0这个维度 ########################################
(1, 10, 1) [[[0]
  [1]
  [2]
  [3]
  [4]
  [5]
  [6]
  [7]
  [8]
  [9]]]
######################################## 去掉axis=3这个维度 ########################################
(1, 1, 10) [[[0 1 2 3 4 5 6 7 8 9]]]
######################################## 去掉axis=0, axis=1这两个维度 ########################################
(10, 1) [[0]
 [1]
 [2]
 [3]
 [4]
 [5]
 [6]
 [7]
 [8]
 [9]]
######################################## 去掉所有1维的维度 ########################################
(10,) [0 1 2 3 4 5 6 7 8 9]
######################################## 去掉不是1维的维度,抛异常 ########################################
cannot select an axis to squeeze out which has size not equal to one

参考链接

来源:https://blog.csdn.net/cxx654/article/details/105762021/

标签:Numpy,扩充矩阵维度,删除维度
0
投稿

猜你喜欢

  • CodeIgniter启用缓存和清除缓存的方法

    2023-11-22 17:04:55
  • 了解javascript中let和var及const关键字的区别

    2024-05-09 15:06:06
  • Django中如何用xlwt生成表格的方法步骤

    2023-07-17 07:47:12
  • python opencv实现信用卡的数字识别

    2023-07-05 02:20:23
  • golang gorm错误处理事务以及日志用法示例

    2024-04-25 13:18:50
  • go语言题解LeetCode66加一示例详解

    2024-05-13 10:43:47
  • JavaScript高级程序设计 阅读笔记(十七) js事件

    2024-04-19 09:55:17
  • JavaScript给数组添加元素的6个方法

    2024-04-30 08:46:47
  • 自己动手用Golang实现约瑟夫环算法的示例

    2024-04-23 09:48:50
  • Python学习之文件的创建与写入详解

    2021-03-07 09:27:06
  • Python Collatz序列实现过程解析

    2023-01-11 18:26:23
  • JAVA 18位身份证号码校验码的算法

    2023-07-07 09:04:12
  • XMLHTTP资料

    2008-09-05 17:20:00
  • php使用ZipArchive函数实现文件的压缩与解压缩

    2023-07-12 20:58:19
  • Python使用pyodbc访问数据库操作方法详解

    2021-08-02 19:12:29
  • Anaconda环境克隆、迁移的详细步骤

    2022-02-22 08:36:47
  • 彻底卸载MySQL的方法分享

    2024-01-23 11:49:08
  • vue使用v-for实现hover点击效果

    2024-05-02 17:09:03
  • python 将字符串转换成字典dict的各种方式总结

    2022-06-28 21:13:35
  • python 实现docx与doc文件的互相转换

    2022-01-19 06:45:58
  • asp之家 网络编程 m.aspxhome.com