Python之Numpy入门实战教程(2):进阶篇之线性代数

Numpy、Pandas、Matplotlib是Python的三个重要科学计算库,今天整理了Numpy的入门实战教程。NumPy是使用Python进行科学计算的基础库。 NumPy以强大的N维数组对象为中心,它还包含有用的线性代数,傅里叶变换和随机数函数。

本文主要介绍Numpy库的重要应用:线性代数,线性代数在机器学习和深度学习中有着广泛的应用。

强烈建议大家将本文中的程序运行一遍。这样能加深对numpy库的使用。
 


目录

1)Matrix transpose

2)Matrix dot product

3)Matrix inverse

4)Identity matrix

5)QR decomposition

6)Determinant

7)Eigenvalues and eigenvectors

8)Singular Value Decomposition

9)Diagonal and trace

10)Solving a system of linear scalar equations


Numpy2维数组在python中可以有效地表示矩阵。 现在我们将快速完成一些主要的矩阵操作。 有关线性代数,向量和矩阵的更多详细信息,请参阅线性代数教程。

1)Matrix transpose

在线性代数里我们学过转置这个概念,我们看看它的代码实现。

m1 = np.arange(10).reshape(2,5)
m1#输出
array([[0, 1, 2, 3, 4],[5, 6, 7, 8, 9]])#矩阵转置
m1.T
array([[0, 5],[1, 6],[2, 7],[3, 8],[4, 9]])#一维数组转置
m2 = np.arange(5)
m2array([0, 1, 2, 3, 4])m2.T
array([0, 1, 2, 3, 4])#我们也可以把一维数组变成二维数组
m2r = m2.reshape(1,5)
m2rarray([[0, 1, 2, 3, 4]])m2r.T
array([[0],[1],[2],[3],[4]])

2)Matrix dot product

我们创建两个矩阵然后进行两个矩阵的乘积运算。矩阵相乘时我们要注意相乘矩阵的维度数。

n1 = np.arange(10).reshape(2, 5)
n1#输出
array([[0, 1, 2, 3, 4],[5, 6, 7, 8, 9]])n2 = np.arange(15).reshape(5,3)
n2#输出
array([[ 0,  1,  2],[ 3,  4,  5],[ 6,  7,  8],[ 9, 10, 11],[12, 13, 14]])#矩阵相乘
n1.dot(n2)array([[ 90, 100, 110],[240, 275, 310]])

3)Matrix inverse

在numpy.linalg模块中包含许多常见线性代数函数,特别是用于计算方阵矩阵逆的inv函数:

import numpy.linalg as linalgm3 = np.array([[1,2,3],[5,7,11],[21,29,31]])
m3#输出
array([[ 1,  2,  3],[ 5,  7, 11],[21, 29, 31]])linalg.inv(m3)
array([[-2.31818182,  0.56818182,  0.02272727],[ 1.72727273, -0.72727273,  0.09090909],[-0.04545455,  0.29545455, -0.06818182]])

4)Identity matrix

一个矩阵和它的逆矩阵相乘得到的是单位阵。

#矩阵与自身逆矩阵相乘
m3.dot(linalg.inv(m3))#输出
array([[ 1.00000000e+00, -1.66533454e-16,  0.00000000e+00],[ 6.31439345e-16,  1.00000000e+00, -1.38777878e-16],[ 5.21110932e-15, -2.38697950e-15,  1.00000000e+00]])#创建3x3单位阵
np.eye(3)array([[1., 0., 0.],[0., 1., 0.],[0., 0., 1.]])

5)QR decomposition

在工程问题中,我们经常进行矩阵分解,NumPy也提供了矩阵分解函数。

#矩阵QR分解
q, r = linalg.qr(m3)
qarray([[-0.04627448,  0.98786672,  0.14824986],[-0.23137241,  0.13377362, -0.96362411],[-0.97176411, -0.07889213,  0.22237479]])r
array([[-21.61018278, -29.89331494, -32.80860727],[  0.        ,   0.62427688,   1.9894538 ],[  0.        ,   0.        ,  -3.26149699]])q.dot(r)
array([[ 1.,  2.,  3.],[ 5.,  7., 11.],[21., 29., 31.]])

6)Determinant

我们看看如何计算矩阵的行列式。

linalg.det(m3)  
43.99999999999997

7)Eigenvalues and eigenvectors

我们看看如何计算矩阵的特征值和特征向量。

#计算特征值、特征向量
eigenvalues, eigenvectors = linalg.eig(m3)
eigenvalues # λarray([42.26600592, -0.35798416, -2.90802176])eigenvectors # varray([[-0.08381182, -0.76283526, -0.18913107],[-0.3075286 ,  0.64133975, -0.6853186 ],[-0.94784057, -0.08225377,  0.70325518]])#验证
m3.dot(eigenvectors) - eigenvalues * eigenvectors  # m3.v - λ*v = 0
array([[ 6.66133815e-15,  1.66533454e-15, -3.10862447e-15],[ 7.10542736e-15,  5.16253706e-15, -5.32907052e-15],[ 3.55271368e-14,  4.94743135e-15, -9.76996262e-15]])

8)Singular Value Decomposition

我们来进行矩阵的奇异值分解,这经常用来在降低矩阵的运算复杂度。矩阵变得稀疏。

m4 = np.array([[1,0,0,0,2], [0,0,3,0,0], [0,0,0,0,0], [0,2,0,0,0]])
m4array([[1, 0, 0, 0, 2],[0, 0, 3, 0, 0],[0, 0, 0, 0, 0],[0, 2, 0, 0, 0]])U, S_diag, V = linalg.svd(m4)
U
#输出
array([[ 0.,  1.,  0.,  0.],[ 1.,  0.,  0.,  0.],[ 0.,  0.,  0., -1.],[ 0.,  0.,  1.,  0.]])S_diag
array([3.        , 2.23606798, 2.        , 0.        ])    #只返回对角线的值#创建返回full维矩阵S_diag
S = np.zeros((4, 5))
S[np.diag_indices(4)] = S_diag
S  # Σ
array([[3.        , 0.        , 0.        , 0.        , 0.        ],[0.        , 2.23606798, 0.        , 0.        , 0.        ],[0.        , 0.        , 2.        , 0.        , 0.        ],[0.        , 0.        , 0.        , 0.        , 0.        ]])V
array([[-0.        ,  0.        ,  1.        , -0.        ,  0.        ],[ 0.4472136 ,  0.        ,  0.        ,  0.        ,  0.89442719],[-0.        ,  1.        ,  0.        , -0.        ,  0.        ],[ 0.        ,  0.        ,  0.        ,  1.        ,  0.        ],[-0.89442719,  0.        ,  0.        ,  0.        ,  0.4472136 ]])#验证
U.dot(S).dot(V) # U.Σ.V == m4
array([[1., 0., 0., 0., 2.],[0., 0., 3., 0., 0.],[0., 0., 0., 0., 0.],[0., 2., 0., 0., 0.]])

9)Diagonal and trace

我们看看如何返回矩阵的对角线元素

np.diag(m3) #返回对角线元素
array([ 1,  7, 31])np.trace(m3) #返回矩阵的迹
39

10)Solving a system of linear scalar equations

我们现在来求解一个线性方程组。方程组如下:

$2x + 6y = 6$

$5x + 3y = -9$

coeffs  = np.array([[2, 6], [5, 3]])
depvars = np.array([6, -9])
solution = linalg.solve(coeffs, depvars)
solutionarray([-3.,  2.])#检查解是否正确
coeffs.dot(solution), depvars(array([ 6., -9.]), array([ 6, -9]))#另一种检查的方法
np.allclose(coeffs.dot(solution), depvars)True

Summary

现在我们已经了解了Numpy库的基本操作,但还有很多我们部分可供学习。最好的方法还是在实践中学习Numpy,我们可以参考Numpy的官方文档来寻找需要的函数和有用的功能。

 

 

 

 

 

 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/439942.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【牛客 - 369F】小D的剑阵(最小割建图,二元关系建图,网络流最小割)

题干: 链接:https://ac.nowcoder.com/acm/contest/369/F 来源:牛客网 题目描述 现在你有 n 把灵剑,其中选择第i把灵剑会得到的 wiw_iwi​ 攻击力。 于此同时,还有q个约束,每个约束形如: …

一步步编写操作系统 1 部署工作环境 1

1.1工欲善其事,必先利其器。 如果您觉得操作系统已属于很底层的东西,我双手赞成。但是如果您像我之前一样,觉得底层的东西无法用上层高级的东西来构建,现在可以睁大眼睛好好看看下面要介绍的东西了。 首先,操作系统是…

多用户操作git“远程仓库“(本地)

设置本地远程仓库 准备远程仓库文件 cd ~/git-repo.git初始化 git init --shared修改git的接收配置 git config receive.denyCurrentBranch ignore初始化git仓库 git config user.email "fxmfxm.com" git config user.name "fxm" git add . git commit -m …

10点43博客文章汇总(2018年度)

今天是春节后上班第一天,将2018年度的文章进行汇总。总共分为三类:翻译、转载、原创。 1.翻译 翻译类目前完结的有Kaggle上的文章和斯坦福CS231n的文章。 Kaggle Learn的Python课程的中文翻译,链接为:Python;Kaggle …

【HDU - 3870】Catch the Theves(平面图转对偶图最短路,网络流最小割)

题干: A group of thieves is approaching a museum in the country of zjsxzy,now they are in city A,and the museum is in city B,where keeps many broken legs of zjsxzy.Luckily,GW learned the conspiracy when he is watching stars and told it to zjsxz…

一步步编写操作系统 2 部署工作环境 2

1.22汇编语言编译器新贵,NASM "新"是相对于旧来说的,老的汇编器MASM和TASM已经过时了,从名称上可以看出字母n是在m之后,其功能必然有所超越才会被大家接受。 请用一句话概括NASM优势在哪里?免费语法简洁使…

Apollo进阶课程 ⑧ | 高精地图的格式规范

目录 高精地图规范格式分类 NDS格式规范 Open DRIVE格式规范 原文链接:Apollo进阶课程 ⑧ | 高精地图的格式规范 上周阿波君为大家详细介绍了「Apollo进阶课程⑦高精地图的采集与生产」。 高精地图采集过程中需要用到的传感器有GPS、IMU和轮速计。 无论是哪种传感…

Casbin初识

Casbin中文文档 环境 go:1.15casbin:v2mysql:5.7 代码 package mycasbinimport ("fmt""github.com/casbin/casbin/v2""github.com/casbin/casbin/v2/model"gormAdapter "github.com/casbin/gorm-adapter/v3""gorm.io/driver/…

Apollo进阶课程 ⑨ | 业界的高精地图产品

目录 高精地图的格式规范-OpenDRIVE HERE HD LIve Map HERE HD LIVE MAP-MAP COLLECTION HERE HD Live Map-Crowdsourced Update HERE HD Live Map-Learning HERE HD Live Map-Product MobileEye MobileEye-Pillars of Autonomous Driving MobileEye-Map as back-up s…

【 HDU - 3062】Party(2-sat)

题干: 有n对夫妻被邀请参加一个聚会,因为场地的问题,每对夫妻中只有1人可以列席。在2n 个人中,某些人之间有着很大的矛盾(当然夫妻之间是没有矛盾的),有矛盾的2个人是不会同时出现在聚会上的。…

微博API接入初识【cxn专用】

微博API官方文档 本文介绍 本文环境成为微博开发者通过鉴权获取单条微博内容 环境 WindowsPython 3.8.10sinaweibopy3-1.3 (pip3 install sinaweibopy3)requests 成为微博开发者 微博官方新手教程 (cxn可以跳过,用博主的即可…

一步步编写操作系统3 部署工作环境 3

盗梦空间般的开发环境,虚拟机中再装个虚拟机。 很多同学电脑的系统都是windows,个别的是mac os,还有的同学用的是linux。做为一名Linux粉丝,我的开发环境必然建立在Linux平台下。那对于其它系统的用户,你们可以自己部署相应平台的…

Apollo进阶课程⑩ | Apollo地图采集方案

目录 TomTom的高精地图和RoadDNA APOLLO地图采集流程 基站搭建 Apollo地图采集硬件方案 地图数据服务平台 原文链接:进阶课程⑩ | Apollo地图采集方案 上周阿波君为大家详细介绍了「Apollo进阶课程⑨业界的高精地图产品」。 出现在课程中的业界制作高精地图的厂…

【HDU - 2665】Kth number(区间第K大,主席树,模板)

题干&#xff1a; Give you a sequence and ask you the kth big number of a inteval. Input The first line is the number of the test cases. For each test case, the first line contain two integer n and m (n, m < 100000), indicates the number of integers …

一步步编写操作系统4 安装x86虚拟机 bochs

Bochs下载安装 在完成了linux发行版的安装后&#xff0c;现在到了安装bochs的环节&#xff0c;这是我们的操作系统最终的宿主机。 由于我的工作是运维&#xff0c;所以练就了任何软件包都要从源码安装的“陋习”&#xff0c;从来不信任任何软件包。因为只有从源码安装的版本才…

用Python写Shell

环境 ubuntu: 18.04python: 3.6.9xnosh: 0.11.0 下载 pip3 install xonsh 简单使用 # 开启xonsh xonsh # 下载小工具&#xff08;也可不下&#xff09;:高亮提示、智能补全 xpip install -U xonsh[full]# 随便下载一个包 pip3 install moneyimport money m1 money.Money(…

Apollo进阶课程⑪ | Apollo地图生产技术

目录 高精地图生产流程 数据采集 数据处理 元素识别 人工验证 全自动数据融合加工 基于深度学习的地图要素识别 人工验证生产 地图成果 原文链接&#xff1a;进阶课程⑪ | Apollo地图生产技术 高精地图是自动驾驶汽车的「千里眼」和「透视镜」。 摄像头、激光雷达、传…

一步步编写操作系统 5 配置bochs

配置bochs 安装完成后该配置bochs了&#xff0c;它是通过配置文件完成的。要说这个配置文件&#xff0c;它有点类似bios。我们在开机时按下的del、或者esc、或者F2键&#xff0c;各个机型进入bios方式有所不同&#xff0c;但差不多就那几种方式。Bios中会显示各种硬件的信息&a…

【HDU - 4417】Super Mario(查询区间小于K的数的个数,主席树)

题干&#xff1a; Mario is world-famous plumber. His “burly” figure and amazing jumping ability reminded in our memory. Now the poor princess is in trouble again and Mario needs to save his lover. We regard the road to the boss’s castle as a line (the l…

Jenkins初识

Jenkins是啥 官方文档 Jenkins是一款开源 CI&CD 软件&#xff0c;用于自动化各种任务&#xff0c;包括构建、测试和部署软件。 Jenkins 支持各种运行方式&#xff0c;可通过系统包、Docker 或者通过一个独立的 Java 程序。CI(Continuous integration&#xff0c;持续集成…