• 大小: 0.77KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-03-02
  • 语言: Python
  • 标签: 矩阵  

资源简介


资源截图

代码片段和文件信息

import math
import numpy
def LUDecompose (table):
    #table that contains our data #table has to be a square array so we need to check first
    rowscolumns=numpy.shape(table)
    L=numpy.zeros((rowscolumns))
    U=numpy.zeros((rowscolumns))
    if rows!=columns:
        return
    for i in range (columns):
        for j in range(i-1):
            sum=0
            for k in ran

评论

共有 条评论