1. 程式人生 > >令矩陣每個元素四捨五入,使順序高斯與列主元高斯結果不同

令矩陣每個元素四捨五入,使順序高斯與列主元高斯結果不同

實現思路就是在每次迴圈中對矩陣進行四捨五入處理

實現程式碼如下

# 四捨五入
def matrixRound(M, decPts=5):
    # 對行迴圈
    for index in range(M.shape[0]):
        # 對列迴圈
        for _index in range(M.shape[1]):
            M[index, _index] = round(M[index, _index], decPts)

    return M