CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - ax=b

搜索资源列表

  1. 实验5-雅可比迭代

    1下载:
  2. 用Matlab软件以及雅克比迭代和高斯-赛德尔迭代解方程组Ax=b,分析、比较其结果-using Matlab software and the iterative and Jacques than Gauss - Seidel iterative solution equations Ax = b, analysis, comparison of the results
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:17358
    • 提供者:葛林
  1. matlab-code

    0下载:
  2. matlab解线性方程组的源代码 function x=nagauss2(a,b,flag) % 用途:选列主元Gauss消去法解线性方程组ax=b % 格式:x=nagauss2(a,b,flag) a为系数矩阵,b为右端列向量,flag若为0,则显示中间过程 -Matlab solution of linear equations source code function nagauss2 x = (a , b, flag)% purposes : a selection P
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:3102
    • 提供者:郑超
  1. qiujie

    0下载:
  2. 【问题描述】已知线性方程组AX=B,求解该方程组。参考算法: 消去法:将列向量B加到矩阵A的最后一列,构成增广矩阵AB。对AB进行下列三种初等变换,使原矩阵A的部分的主对角线上的元素均为1,其余元素均为0,则原列向量B的部分即为X的值: 1. 将矩阵的一行乘以一个不为0的数 2. 将矩阵的一行加上另一行的倍数 3. 交换矩阵中两行的位置 - [ Question descr iption ] known system of linear equations AX=B, s
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:6550
    • 提供者:chao
  1. number_theory_c++

    0下载:
  2. 数论算法库 C++ 语言实现 代码内容 数论算法库,包括以下算法: 欧几里德算法求a,b的最大公倍数 扩展的欧几里德算法,求出gcd(a,b)和满足gcd(a,b)=ax+by的整数x和y 求解模线性方程 ax ≡ b (mod n) 其中n>0 求解模线性方程组(中国余数定理) 模取幂运算 计算a^b mod n (a,b可能很大) Miller-Rabin随机性素数测试算法
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:9769
    • 提供者:henry
  1. spgs

    0下载:
  2. 用途:用向量(稀疏存储)形式的Gauss-Seidel迭代解线性方程组Ax=b % 格式: x=spgs(A,b,x0,e,N),A为系数矩阵,b为右端向量,x返回解向量。 % x0为初值向量(默认原点),e为精度(默认1e-4),设置迭代次数上限以防发散(默 % 认500)。 -purposes : with Vector (sparse storage) form of Gauss - Seidel iterative solution of linear equations
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:858
    • 提供者:王志波
  1. lu_decompose

    0下载:
  2. 数值与符号计算LU分解法,运用LU分解函数求解Ax=b的矩阵运算-numerical and symbolic computation LU decomposition, using LU decomposition function for Ax = b matrix operation
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:6324
    • 提供者:peter
  1. EOM

    0下载:
  2. 拉格朗日插值多项式拟合,牛顿插值多项式,欧拉方程解偏微分方程,使用极限微分求解导数(微分),微分方程组的N=4龙格库塔解法,雅可比爹迭代法解方程AX=B,最小二乘多项式拟合,组合辛普生公式求解积分,用三角分解法解方程AX=B-Lagrange interpolation polynomial fitting, polynomial interpolation Newton, Euler equations partial differential equations, Limit the use
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:7783
    • 提供者:wangshen
  1. gauss-C

    0下载:
  2. * 高斯列主元素消去法求解矩阵方程AX=B,其中A是N*N的矩阵,B是N*M矩阵 * 输入: n----方阵A的行数 * a----矩阵A * m----矩阵B的列数 * b----矩阵B * 输出: det----矩阵A的行列式值 * a----A消元后的上三角矩阵 * b----矩阵方程的解X -out the main elements of Gaussian elimination method for solving matrix equ
  3. 所属分类:文件操作

    • 发布日期:2008-10-13
    • 文件大小:3241
    • 提供者:xuyan
  1. 132131312312

    0下载:
  2. % 用途:选列主元Gauss消去法解线性方程组ax=b % 格式:x=nagauss2(a,b,flag) a为系数矩阵,b为右端列向量,flag若为0,则显示中间过程 % 否则不显示,默认值为0,x为解向量
  3. 所属分类:Web服务器

    • 发布日期:2008-10-13
    • 文件大小:1263
    • 提供者:xiaohuang
  1. AX=b

    0下载:
  2. 求解大规模非对称线性方程组AX=b的迭代方法-Solving large-scale non-symmetric linear equations AX = b of the iterative method
  3. 所属分类:Algorithm

    • 发布日期:2017-04-13
    • 文件大小:2697
    • 提供者:CAICAI
  1. Gauss_elimination

    0下载:
  2. Gauss Elimination Algorithm is used to solve linear equations in the form Ax=B, find rank of matrix and to find inverse of matrixes. The program is done in matlab platform.
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:603
    • 提供者:mmbaskr
  1. penta2

    0下载:
  2. Solves the problem Ax=b when A is pentadiagonal and strongly nonsingular. This is much faster than x=A\y for large matrices. -Solves the problem Ax=b when A is pentadiagonal and strongly nonsingular. This is much faster than x=A\y for lar
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:1198
    • 提供者:katore vishal
  1. cramer

    0下载:
  2. Solve the system Ax=b.
  3. 所属分类:matlab

    • 发布日期:2017-04-06
    • 文件大小:676
    • 提供者:katore vishal
  1. lsq

    0下载:
  2. Least squares solution of Ax=b.
  3. 所属分类:matlab

    • 发布日期:2017-04-07
    • 文件大小:715
    • 提供者:katore vishal
  1. AX=B-jacobi

    0下载:
  2. 根据雅克比迭代法求解线性方程组AX=B的MATLAB程序。经过算例验证正确。适用性非常广。-According to Jacobi iterative method for solving linear equations AX = B on MATLAB. After a numerical example is correct. Very wide applicability.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-21
    • 文件大小:802
    • 提供者:大象
  1. the-solution-to-AX=B

    0下载:
  2. 对任意线性方程组AX=B,利用矩阵等价变换形成上三角矩阵,在利用高斯消元法中的回代过程简便的求解方程组AX=B的解。本程序是用MATLAB编写的,运行时只要输入矩阵A和B,即可得到方程的解。程序中有详细的注释,很好理解。本程序具有通用性。-For any system of linear equations AX = B, the use of equivalent transformation matrix to form the upper triangular matrix using G
  3. 所属分类:Algorithm

    • 发布日期:2017-03-26
    • 文件大小:1252
    • 提供者:大象
  1. Ax-=-b-is-a-simple-solution-using-C

    0下载:
  2. 用C语言求解N阶线性矩阵方程Ax=b的简单解法-N-order linear matrix equation Ax = b is a simple solution using C language to solve
  3. 所属分类:数据结构常用算法

    • 发布日期:2016-01-23
    • 文件大小:447120
    • 提供者:张莹
  1. LU_Decomposition_with_Pivoting_NUM_(AX=B)

    0下载:
  2. Solving AX=B by using LU Decomposition with Pivoting
  3. 所属分类:software engineering

    • 发布日期:2017-03-21
    • 文件大小:938
    • 提供者:JJama
  1. LU_Decomposition_without_Pivoting_(AX=B)

    0下载:
  2. Solving AX=B by using LU Decomposition without Pivoting
  3. 所属分类:软件工程

    • 发布日期:2017-04-06
    • 文件大小:866
    • 提供者:JJama
  1. 高斯-赛德尔迭代法求线性方程组Ax=b的解

    0下载:
  2. 该程序主要是利用高斯-赛德尔迭代法求线性方程组Ax=b的解(The program mainly uses the Gauss-Seidel iteration to solve the solution of the linear system Ax = b)
  3. 所属分类:其他

    • 发布日期:2018-01-05
    • 文件大小:10240
    • 提供者:浅若夏沫
« 12 3 4 5 6 7 8 9 10 ... 14 »
搜珍网 www.dssz.com