Python利用三元组完成稀疏矩阵相乘

本文阅读 1 分钟
首页 Python笔记 正文
'''
利用三元组完成稀疏矩阵相乘
'''

from numpy import *
def sparseToTriple(matrix):
    m, n = shape(matrix)
    triple = []
    for i in range(m):
        for j in range(n):
            if matrix[i][j] != 0:
                triple.append([i, j, matrix[i][j]])
    return triple

def multiTriple(tripleA, tripleB):
    rowA = shape(tripleA)[0]
    rowB = shape(tripleB)[0]
    multiMatrix = []
    for i in range(rowA):
        for j in range(rowB):
            if tripleA[i][1] == tripleB[j][0]:
                multiMatrix.append([tripleA[i][0], tripleB[j][1], tripleA[i][2]*tripleB[j][2]])
    return multiMatrix

def tripleToSparse(triple, m, n):
    outMatrix = zeros([m, n])
    for pointTuple in triple:
        mLocation = pointTuple[0]
        nLocation = pointTuple[1]
        value = pointTuple[2]
        outMatrix[mLocation][nLocation] = value
    return outMatrix

def matrixMultiple(matrixA, matrixB):
    mA, nA = shape(matrixA)
    mB, nB = shape(matrixB)
    if nA != mB:
        print("the two matries doesn't match!")
        return -1

    tripleA = sparseToTriple(matrixA)
    tripleB = sparseToTriple(matrixB)
    multiTriples = multiTriple(tripleA, tripleB)
    print(multiTriples)
    multiMatrix = tripleToSparse(multiTriples, mA, nB)
    return multiMatrix

matrixA = [[3, 0, 0, 7],
           [0, 0, -1, 0],
           [-1, -2, 0, 0],
           [0, 0, 0, 2]]
matrixB = [[0, 0, -2, 0, -1],
           [0, 0, -3, 0, 0],
           [-1, 0, 0, 0, 0],
           [0, 0, 0, 3, 0]]
ans = matrixMultiple(matrixA, matrixB)
print(ans)
解压密码: detechn或detechn.com

免责声明

本站所有资源出自互联网收集整理,本站不参与制作,如果侵犯了您的合法权益,请联系本站我们会及时删除。

本站发布资源来源于互联网,可能存在水印或者引流等信息,请用户自行鉴别,做一个有主见和判断力的用户。

本站资源仅供研究、学习交流之用,若使用商业用途,请购买正版授权,否则产生的一切后果将由下载用户自行承担。

Python机器人的运动范围
« 上一篇 01-21
Python稀疏矩阵的转置
下一篇 » 01-21

发表评论