圆月山庄资源网 Design By www.vgjia.com
问题描述
分别实现矩阵相乘的3种算法,比较三种算法在矩阵大小分别为22"htmlcode">
#-*- coding: utf-8 -*- from matplotlib.font_manager import FontProperties import numpy as np import time import random import math import copy import matplotlib.pyplot as plt #n = [2**2, 2**3, 2**4, 2**5, 2**6, 2**7, 2**8, 2**9, 2**10, 2**11, 2**12] n = [2**2, 2**3, 2**4, 2**5, 2**6, 2**7, 2**8, 2**9, 2**10, 2**11] Sum_time1 = [] Sum_time2 = [] Sum_time3 = [] Sum_time4 = [] for m in n: A = np.random.randint(0, 2, [m, m]) B = np.random.randint(0, 2, [m, m]) A1 = np.mat(A) B1 = np.mat(B) time_start = time.time() C1 = A1*B1 time_end = time.time() Sum_time1.append(time_end - time_start) C2 = np.zeros([m, m], dtype = np.int) time_start = time.time() for i in range(m): for k in range(m): for j in range(m): C2[i, j] = C2[i, j] + A[i, k] * B[k, j] time_end = time.time() Sum_time2.append(time_end - time_start) A11 = np.mat(A[0:m//2, 0:m//2]) A12 = np.mat(A[0:m//2, m//2:m]) A21 = np.mat(A[m//2:m, 0:m//2]) A22 = np.mat(A[m//2:m, m//2:m]) B11 = np.mat(B[0:m//2, 0:m//2]) B12 = np.mat(B[0:m//2, m//2:m]) B21 = np.mat(B[m//2:m, 0:m//2]) B22 = np.mat(B[m//2:m, m//2:m]) time_start = time.time() C11 = A11 * B11 + A12 * B21 C12 = A11 * B12 + A12 * B22 C21 = A21 * B11 + A22 * B21 C22 = A21 * B12 + A22 * B22 C3 = np.vstack((np.hstack((C11, C12)), np.hstack((C21, C22)))) time_end = time.time() Sum_time3.append(time_end - time_start) time_start = time.time() M1 = A11 * (B12 - B22) M2 = (A11 + A12) * B22 M3 = (A21 + A22) * B11 M4 = A22 * (B21 - B11) M5 = (A11 + A22) * (B11 + B22) M6 = (A12 - A22) * (B21 + B22) M7 = (A11 - A21) * (B11 + B12) C11 = M5 + M4 - M2 + M6 C12 = M1 + M2 C21 = M3 + M4 C22 = M5 + M1 - M3 - M7 C4 = np.vstack((np.hstack((C11, C12)), np.hstack((C21, C22)))) time_end = time.time() Sum_time4.append(time_end - time_start) f1 = open('python_time1.txt', 'w') for ele in Sum_time1: f1.writelines(str(ele) + '\n') f1.close() f2 = open('python_time2.txt', 'w') for ele in Sum_time2: f2.writelines(str(ele) + '\n') f2.close() f3 = open('python_time3.txt', 'w') for ele in Sum_time3: f3.writelines(str(ele) + '\n') f3.close() f4 = open('python_time4.txt', 'w') for ele in Sum_time4: f4.writelines(str(ele) + '\n') f4.close() font = FontProperties(fname=r"c:\windows\fonts\simsun.ttc", size=8) plt.figure(1) plt.subplot(221) plt.semilogx(n, Sum_time1, 'r-*') plt.ylabel(u"时间(s)", fontproperties=font) plt.xlabel(u"矩阵的维度n", fontproperties=font) plt.title(u'python自带的方法', fontproperties=font) plt.subplot(222) plt.semilogx(n, Sum_time2, 'b-*') plt.ylabel(u"时间(s)", fontproperties=font) plt.xlabel(u"矩阵的维度n", fontproperties=font) plt.title(u'定义法', fontproperties=font) plt.subplot(223) plt.semilogx(n, Sum_time3, 'y-*') plt.ylabel(u"时间(s)", fontproperties=font) plt.xlabel(u"矩阵的维度n", fontproperties=font) plt.title( u'分治法', fontproperties=font) plt.subplot(224) plt.semilogx(n, Sum_time4, 'g-*') plt.ylabel(u"时间(s)", fontproperties=font) plt.xlabel(u"矩阵的维度n", fontproperties=font) plt.title( u'Strasses法', fontproperties=font) plt.figure(2) plt.semilogx(n, Sum_time1, 'r-*', n, Sum_time2, 'b-+', n, Sum_time3, 'y-o', n, Sum_time4, 'g-^') #plt.legend(u'python自带的方法', u'定义法', u'分治法', u'Strasses法', fontproperties=font) plt.show()
以上这篇Python实现矩阵相乘的三种方法小结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
标签:
Python,矩阵,相乘
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2024年11月07日
2024年11月07日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]