Numpy数组array和矩阵matrix转换方法

作者:rosefun96 时间:2021-06-25 06:17:26 

1、ndarray转换成matrix


import numpy as np
from numpy import random,mat

r_arr=random.rand(4,4)
print('r_arr',r_arr)
r_mat=mat(r_arr)
print(r_mat.I)#求逆

运行结果:

r_arr [[ 0.65603592  0.39908438  0.44722351  0.92652759]
 [ 0.32357477  0.45384697  0.31687359  0.73861219]
 [ 0.3534119   0.12693696  0.15701767  0.9163409 ]
 [ 0.36515841  0.87377377  0.44150506  0.4605718 ]]
r_mat [[ 0.65603592  0.39908438  0.44722351  0.92652759]
 [ 0.32357477  0.45384697  0.31687359  0.73861219]
 [ 0.3534119   0.12693696  0.15701767  0.9163409 ]
 [ 0.36515841  0.87377377  0.44150506  0.4605718 ]]
[[  2.20907786 -11.21482242   4.73076477   4.12886716]
 [ -1.79239654  -4.48728612   3.52875987   3.78121743]
 [  2.86148809  15.82430961 -11.71577803  -7.82425058]
 [ -1.09402215   2.23536661   0.78545617  -0.77549894]]


import numpy as np
from numpy import random,mat,eye

r_arr=random.rand(4,4)
print('r_arr',r_arr)
r_mat=mat(r_arr)
print('r_mat',r_mat)
r_invmat=r_mat.I
# print(r_mat.I)
r2_mat=r_mat*r_invmat
print('r2_mat',r2_mat)
print('error',r2_mat-eye(4))

来源:https://blog.csdn.net/rosefun96/article/details/79059549

标签:Numpy,array,matrix,转换
0
投稿

猜你喜欢

  • Python3实现发送QQ邮件功能(html)

    2023-06-26 16:50:41
  • Python3 加密(hashlib和hmac)模块的实现

    2022-07-02 08:13:52
  • Pandas数据结构详细说明及如何创建Series,DataFrame对象方法

    2021-03-14 12:13:35
  • mysql sock 文件解析及作用讲解

    2024-01-26 13:15:47
  • 解决python3 中的np.load编码问题

    2021-12-19 20:28:27
  • python根据照片获取地理位置及泄露防御

    2022-03-23 11:16:54
  • oracle数据库导入导出命令使用方法

    2023-07-22 19:06:39
  • Python的collections模块中的OrderedDict有序字典

    2023-06-21 00:13:52
  • SQL Server元数据的管理与应用

    2009-03-16 14:24:00
  • 2008圣诞节网站特色Logo不完全点评

    2008-12-25 18:35:00
  • 跟老齐学Python之集合(set)

    2023-02-11 00:51:31
  • 微信公众平台开发教程(六)获取个性二维码的实例

    2024-04-10 11:04:12
  • asp.net中不能在DropDownList中选择多个项 原因分析及解决方法

    2023-07-23 22:15:27
  • MSSQL中递归SQL查询语句实例说明-

    2024-01-28 19:54:01
  • Python将多个list合并为1个list的方法

    2023-10-17 10:13:17
  • 从学习到接单赚钱 十大网络技术人员推荐收藏的网站

    2023-02-05 02:54:24
  • 查看修改MySQL表结构命令

    2024-01-26 03:45:52
  • 使用基于Python的Tornado框架的HTTP客户端的教程

    2023-05-15 06:50:43
  • Flask + MySQL如何实现用户注册,登录和登出的项目实践

    2024-01-21 17:02:33
  • Pytorch中的Broadcasting问题

    2022-10-03 06:26:58
  • asp之家 网络编程 m.aspxhome.com