Python中的几种矩阵乘法(小结)
作者:hezhiyao 时间:2021-11-29 23:51:33
一. np.dot()
1.同线性代数中矩阵乘法的定义。np.dot(A, B)表示:
对二维矩阵,计算真正意义上的矩阵乘积。
对于一维矩阵,计算两者的内积。
2.代码
【code】
import numpy as np
# 2-D array: 2 x 3
two_dim_matrix_one = np.array([[1, 2, 3], [4, 5, 6]])
# 2-D array: 3 x 2
two_dim_matrix_two = np.array([[1, 2], [3, 4], [5, 6]])
two_multi_res = np.dot(two_dim_matrix_one, two_dim_matrix_two)
print('two_multi_res: %s' %(two_multi_res))
# 1-D array
one_dim_vec_one = np.array([1, 2, 3])
one_dim_vec_two = np.array([4, 5, 6])
one_result_res = np.dot(one_dim_vec_one, one_dim_vec_two)
print('one_result_res: %s' %(one_result_res))
【result】
two_multi_res: [[22 28]
[49 64]]
one_result_res: 32
二. np.multiply()或 *
1.在Python中,实现对应元素相乘(element-wise product),有2种方式,
一个是np.multiply()
另外一个是 *
2.代码
【code】
import numpy as np
# 2-D array: 2 x 3
two_dim_matrix_one = np.array([[1, 2, 3], [4, 5, 6]])
another_two_dim_matrix_one = np.array([[7, 8, 9], [4, 7, 1]])
# 对应元素相乘 element-wise product
element_wise = two_dim_matrix_one * another_two_dim_matrix_one
print('element wise product: %s' %(element_wise))
# 对应元素相乘 element-wise product
element_wise_2 = np.multiply(two_dim_matrix_one, another_two_dim_matrix_one)
print('element wise product: %s' % (element_wise_2))
【result】
element wise product: [[ 7 16 27]
[16 35 6]]
element wise product: [[ 7 16 27]
[16 35 6]]
来源:https://www.cnblogs.com/hezhiyao/p/8177832.html
标签:Python,矩阵乘法
0
投稿
猜你喜欢
Python实现的圆形绘制(画圆)示例
2023-01-09 12:41:36
ASP中类的详细介绍(class Property Get、Property Let)
2008-02-20 19:18:00
golang 执行命令行的实现
2024-04-28 09:14:40
YOLOv5车牌识别实战教程(二)理论基础
2021-11-08 09:16:06
python ChainMap的使用详解
2023-10-31 18:02:40
python执行系统命令4种方法与比较
2022-12-13 12:55:59
Alexa排名数据xml接口及其参数说明
2008-11-07 13:03:00
Python高阶函数与装饰器函数的深入讲解
2023-10-04 12:42:41
Python批量处理图片大小尺寸方法详解
2021-12-11 23:12:07
一种特别简单的MySQL数据库安装方法
2008-12-17 15:30:00
ASP读取Exif信息无组件实现过程
2009-02-09 12:52:00
Python基于Tkinter实现的垃圾分类答题软件代码
2023-09-09 02:20:24
python random库的简单使用demo
2023-03-03 04:31:32
一些需要禁用的PHP危险函数(disable_functions)
2023-11-23 15:29:25
把论坛从ACCESS转成SQL版本
2009-04-13 15:59:00
PHP使用缓存即时输出内容(output buffering)的方法
2023-11-23 20:12:11
python使用多线程不断刷新网页的方法
2022-10-03 09:19:26
pytorch 带batch的tensor类型图像显示操作
2023-06-02 08:47:26
Python将多个list合并为1个list的方法
2023-10-17 10:13:17
如何在MySQL数据库中使用XML数据
2009-12-29 10:48:00