python创建矩阵无numpy_python中如何基于numpy创建矩阵

1bb268bc8b184d1f0a1cb4679ce24100.png

python的功能强大依赖于各种库发挥的作用,例如numpy库就提供了矩阵运算的功能,如果我们想要进行矩阵运算,首先要导入numpy的包,创建矩阵。本文介绍python中基于numpy创建矩阵的三种方法:1、手动创建;2、利用numpy数组创建;3、使用numpy.matix()函数创建矩阵。

一、导入numpy>>>from numpy import *;#导入numpy的库函数

>>>import numpy as np; #这个方式使用numpy的函数时,需要以np.开头。

二、python基于numpy创建矩阵方法

1、手动创建a=np.mat('1 2 3;4 5 6;7 8 9') # 中间打逗号也可以 b=np.mat('1,2,3;4,5,6;7,8,9')

2、利用numpy数组创建c=np.mat(np.arange(9)) #一维的矩阵

c=np.mat(np.arange(9).reshape(3,3))

3、使用numpy.matix()函数创建矩阵import numpy as np

# create 2x2 matrix

a = np.matrix([[1, 2], [3, 4]])  # using array of array

print('2x2 matrix is:\n', a)

# using shape attribute to get the tuple describing matrix shape

print('The dimension of the matrix is :', a.shape)

以上就是python中基于numpy创建矩阵的三种方法,希望能帮助到你进行创建矩阵哦~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值