CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - lu分解法

搜索资源列表

  1. MatrixInverse

    1下载:
  2. 这是一个非常好的利用LU分解法求逆矩阵的程序,其中的Pivot是很好的。-This is a very good use of LU decomposition of the matrix inversion process, the Pivot is very good.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:2515
    • 提供者:sylivian
  1. LU

    0下载:
  2. 数值分析中LU分解法解结构矩阵问题,Visual C#源代码-Numerical analysis of LU decomposition method solution of the problem structure matrix, Visual C# Source code
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:1481
    • 提供者:王大和
  1. 1

    0下载:
  2. lu分解一个非常好的利用LU分解法求逆矩阵的程序,其... 详细说明:这是一个非常好的利用LU分解法求逆矩阵的程序,其中的Pivot是很好的-lu decomposition of a very good use of LU decomposition of matrix inversion procedures, a detailed descr iption of its ...: This is a very good use of LU decomposition of matrix
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:670
    • 提供者:丁叮
  1. LU

    0下载:
  2. LU分解法用于解方程组,且同时输出LU分解矩阵-LU decomposition method for solution of equations, LU decomposition and at the same time the output matrix
  3. 所属分类:Other systems

    • 发布日期:2015-04-02
    • 文件大小:3427
    • 提供者:hgyvjuyvk
  1. LU

    0下载:
  2. 本程序采用数值分析中经典的LU分解法解线性方程组-This program uses numerical analysis of the classical LU decomposition method for solving linear equations
  3. 所属分类:Console

    • 发布日期:2017-03-29
    • 文件大小:28048
    • 提供者:bill_chuang
  1. LU

    0下载:
  2. 解线性代数方程组的列主元LU分解法的C++实现-Solving linear algebraic equations out of the main element LU decomposition by C++
  3. 所属分类:Console

    • 发布日期:2017-04-04
    • 文件大小:832
    • 提供者:CGQ
  1. LU

    0下载:
  2. LU分解法 数值分析课程设计 C语言程序-Numerical analysis of LU decomposition C language program curriculum design
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:1408
    • 提供者:詹永恒
  1. solution-of-linear-equations

    0下载:
  2. 有7种解线性方程组的算法,高斯算法,高斯列主元,高斯完全主元,LU分解法,LU列主元分解法,追赶法,高斯约旦消去法-There are seven kinds algorithm of solution of linear equations, Gaussian algorithm, out PCA Gaussian, Gaussian completely principal component, LU decomposition, LU column principal component
  3. 所属分类:Other systems

    • 发布日期:2017-11-13
    • 文件大小:339164
    • 提供者:zhangjing
  1. exe2-2-LUdecomposition

    0下载:
  2. LU分解之Crout分解法。对从文件中读取的A矩阵进行LU分解并输出L矩阵,U矩阵。-Crout LU decomposition decomposition method. Read from the file A matrix LU decomposition and output L matrix, U matrix.
  3. 所属分类:CSharp

    • 发布日期:2017-11-17
    • 文件大小:1077
    • 提供者:
  1. XianXing

    0下载:
  2. 线性方程组的求解方法,内涵高斯消元法、LU分解法和迭代法。-failed to translate
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-26
    • 文件大小:2876
    • 提供者:阿党
  1. ludepart

    0下载:
  2. 数值分析算法,LU分解法解方程组,数据从文件中读入,结果从文件中输出。-Numerical analysis algorithms, LU decomposition method for solving equations, data is read from the file, the output from the file.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-24
    • 文件大小:247707
    • 提供者:HanG
  1. LU

    1下载:
  2. LU分解法求解线性方程组Ax=b.该程序为直接求解法,可以实现对实数和复数的计算。程序较简练,但是运行的效率较高。-Crout s decomposition method for solving of n linear equations:Ax=b
  3. 所属分类:Other systems

    • 发布日期:2015-06-12
    • 文件大小:109568
    • 提供者:caoxiaoyue
  1. LU-decomposition

    0下载:
  2. 数值计算中的LU分解法,用C语言编写,亲测可用-Numerical calculations of LU decomposition method, using C language, pro-test available
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:112647
    • 提供者:谢军
  1. yfajzv

    0下载:
  2. 用VB实现线性方程组的求解,包括:高斯消元法,LU分解法追赶法,迭代法,奇异值分解,乔累斯基分解法等12种数值方法,()
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:4096
    • 提供者:QSR$051353
  1. sanjiaofenjiefa

    0下载:
  2. 三角分解法亦称因子分解法,由消元法演变而来的解线性方程组的一类方法。设方程组的矩阵形式为Ax=b,三角分解法就是将系数矩阵A分解为一个下三角矩阵L和一个上三角矩阵U之积:A=LU,然后依次解两个三角形方程组Ly=b和Ux=y,而得到原方程组的解,例如,杜利特尔分解法、乔莱斯基分解法等就是三角分解法(The triangular decomposition method, also called factor decomposition method, is a kind of method of
  3. 所属分类:其他

    • 发布日期:2018-01-08
    • 文件大小:2048
    • 提供者:xzt
搜珍网 www.dssz.com