日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

用python实现矩阵乘法

發布時間:2025/4/16 21 豆豆
生活随笔 收集整理的這篇文章主要介紹了 用python实现矩阵乘法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目:只用python的類和列表,實現矩陣乘法。

分析:先給定用戶輸入,再實現乘法。若有矩陣a和b,axb的規則是a的每一行乘b的每一列,每一次都要求和。

class Matmul(object):# mat_shape = (row, col) 元組,矩陣大小def __init__(self, mat_shape):self.cube = []self.row = mat_shape[0]self.col = mat_shape[1]def add_value(self):tmp = []for _ in range(self.row):for _ in range(self.col):tmp.append(int(input('按行輸入矩陣: ')))self.cube.append(tmp)tmp = []def show(self):print("the cube is :", self.cube)def multiply(self, other):if self.col != other.row:print("Not have the permission!")else:tmp_result = []cub_result = []tmp = []for a in range(self.row):for b in range(self.col):for x in range(other.row):tmp_result.append(self.cube[a][x] * other.cube[x][b])tmp.append(sum(tmp_result))tmp_result = []cub_result.append(tmp)tmp = []print(cub_result)

這就實現了矩陣乘法,測試一下。

mat1 = Matmul(mat_shape=(2, 3)) mat2 = Matmul(mat_shape=(3, 3)) print('矩陣1;') mat1.add_value() print('矩陣2:') mat2.add_value() mat1.show() mat2.show() print('結果為:') mat1.multiply(mat2)

結果如下:

正確。

總結

以上是生活随笔為你收集整理的用python实现矩阵乘法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。