搜索资源列表

  1. yakabi

    0下载:
  2. 雅克比算法,用来解线性方程组 在一个课程作业上,可方便使用-Jacques algorithm used to solve linear equations in a course on the operation, ease of use
  3. 所属分类:家庭/个人应用

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:许多
  1. Jacobi-matlab

    1下载:
  2. 雅可比(Jocabi)迭代法解线性方程组-Jacobi (Jocabi) iterative method for solving linear equations
  3. 所属分类:文件格式

    • 发布日期:2024-05-14
    • 文件大小:5120
    • 提供者:js
  1. geap

    0下载:
  2. 自己编写的全主元高斯消去法解线性方程组的matlab函数。特点:运行稳定,适合于工程计算;结构清楚,注释详尽,非常适合于初学者。-their preparation of all PCA Gaussian elimination method for solving linear equations of Matlab function. Features : stable operation, which is suitable fo
  3. 所属分类:matlab例程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:姚飞
  1. Lineasolvebycolum

    0下载:
  2. 对于线性非齐次方程组的求解,列主元求解法,简单快捷。这是自己写的c程序列主元法求解线性方程组。-for non-homogeneous linear equations, the solution are the main element method, a simple and quick. This is, write out the procedure c main element method for solving linea
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:刘恒
  1. Gauss_Seidel_iterative

    0下载:
  2. 迭代法是解线性代数方程组的另一类方法,特别适用于解大型稀疏线性方程组。它的基本思想是针对求解问题预先设计好某种迭代格式,从而产生求解问题的近似解迭代序列,在迭代序列收敛于精确解的情况下,按精度要求取某个迭代值作为问题解的近似值。迭代法具有原始系数举证始终不变,算法简单,编写程序较方便,所需存储单元较少的优点。-iterative method was the linear algebraic equations of the other
  3. 所属分类:matlab例程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:江理彬
  1. goss

    0下载:
  2. 用GOSS解线性方程组 Dim i As Integer 循环变量 Dim j As Integer 循环变量 Dim k As Integer 循环变量 -with Goss solving linear equations Dim i As Integer Dim cycle variable j As In teger cycle variables As Integer Dim k cycle variabl
  3. 所属分类:并行运算

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:li
  1. NumericalAnalysisAlgorithm

    0下载:
  2. 列主元消元法解线性方程组(已通过验证) LU分解法解线性方程组(已通过验证): 雅可比迭代法(已通过P54例一和习题一的验证)高斯---赛得尔迭代法 拉哥朗日插值公式(乘幂法 -main-element elimination method for solving linear equations (validated) LU decomposition method for solving linear equati
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-14
    • 文件大小:12288
    • 提供者:xuyao
  1. jiefc

    0下载:
  2. 解线性方程组(多元一次) 水平有限,DOS界面。 其中,输出方程组的未知数用x1,x2,x3...表示, 可以解出多元一次方程。 -solution of linear equations (multiple times) is limited, and DOS interface. Within this total, output equations with the unknown x1, x2, x3 ... t
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-14
    • 文件大小:7168
    • 提供者:杨昆
  1. linearsolvers

    1下载:
  2. matlab编程的三个线性方程组求解子程序:cggm.m,fdm.m,febs.m.其中cggm.m为共轭梯度法求解子程序,fdm.m为最速下降法求解自程序,febs.m为三对角追赶法求解子程序.-Matlab programming three linear equations subroutine : cggm.m, fdm.m. febs.m. which cggm.m to conjugate gradient method s
  3. 所属分类:matlab例程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:王礼广
  1. wlg

    0下载:
  2. 五对角占优线性方程组求解的MATLAB 程序MYLU。 输入参数A为系数矩阵,F为右端向量。输出参数L,U为A的LU 分解A=LU,X为解向量。-five pairs diagonally dominant linear equations MYLU the MATLAB program. A input parameters for the coefficient matrix, F subguadratic vector. Ou
  3. 所属分类:matlab例程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:王礼广
  1. gsxy

    0下载:
  2. // 带有列主元的高斯消元法 // 功能: 求解线性方程组 Ax = b // 参数: A - 指向n*n系数矩阵的指针 //     b - 常数向量的指针 //     n - 方程组的维数 // 返回值:0 - 如果成功。线性方程组的解保存在 b 中 //     1 - 求解失败-//Carry out principal component of the Gaussian elimination met
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:bodihotboy
  1. SVD

    0下载:
  2. % 奇异值分解 (sigular value decomposition,SVD) 是另一种正交矩阵分解法;SVD是最可靠的分解法, % 但是它比QR 分解法要花上近十倍的计算时间。[U,S,V]=svd(A),其中U和V代表二个相互正交矩阵, % 而S代表一对角矩阵。 和QR分解法相同者, 原矩阵A不必为正方矩阵。 % 使用SVD分解法的用途是解最小平方误差法和数据压缩。用svd分解法解线性方程组,在Quke2中就用这个
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-14
    • 文件大小:3072
    • 提供者:zhxj
  1. MatrixAndXmathlib

    0下载:
  2. 矩阵和初等几何常用算法,包括高斯-约当法求逆矩阵、用乔里斯基分解法求对称正定阵的线性方程组等等的源代码-Matrix and elementary geometry commonly used algorithms, including Gaussian- about when the inverse matrix method, using乔里斯基decomposition method for symmetric positive
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-14
    • 文件大小:22528
    • 提供者:张华安
  1. JacobiGaussSeidel

    1下载:
  2. 雅克比和高斯赛德尔迭代法求解线性方程组 用c++软件开发的程序-And high斯赛德尔Jacobian iteration method for solving linear equations with c++ Software development process
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:王朝喜
  1. VBparse

    0下载:
  2. 该系统分为数学公式编译器和数值计算两大块,数学公式编译器的实现比较复杂,计算系统的实现是利用编译器调用数学公式进行的,插值方法,方程求根,数值积分,线性方程组求解-The system is divided into mathematical formulas and numerical calculation of the compiler two blocks, mathematical formula compiler reali
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-14
    • 文件大小:562176
    • 提供者:李亚成
  1. Gauss

    0下载:
  2. Gauss跌代法解线性方程组的程序 可以用以参考-Or on behalf of Gauss law solution of linear equations can be used to refer to the procedures
  3. 所属分类:汇编语言

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:陈勋林
  1. Mroot_LinearSolver

    0下载:
  2. 改进平方根法求解对称正定线性方程组,用matlab编写,可以在一定程度上提高求解效率。其中MRoot_squaring.m为原做法,sparse_cmp.m为二维等带宽存储,Moot_zonal.m为二维等带宽存储的平方根法求解-To improve the square root method to solve symmetric positive definite system of linear equations using m
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:周星星
  1. liezhuyuangaussandsor

    0下载:
  2. 自己用matlab编写的选主元高斯消去法解线性方程组的通用程序,和sor法解线性方程组的通用程序 -Using matlab to prepare their election PCA Gaussian elimination solution of linear equations of the general procedures, and sor Solving linear equations of general progra
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-14
    • 文件大小:6144
    • 提供者:连早喻
  1. 22

    0下载:
  2. 用Gauss消元法、选列主元的Gauss消元法求线性方程组(1)的解,要求输出增广矩阵的消元变化过程。 用Gauss消元法、选列主元的Gauss消元法求线性方程组(1)的解,要求输出增广矩阵的消元变化过程 42x1+2x2+3x3=3 x1+7x2+7x3=1 -2x1+4x2+5x3=-7 算法思想:Gauss消元法是将线性方程组化为上三角形线性方程组,然后再用一个回代过程求这个上三角形线性方程组的解;选主元的G
  3. 所属分类:并行运算

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:lz
  1. LUfjdgsfsx

    0下载:
  2. 本文对求解线性方程组的LU分解递归算法进行了研究,给出了算法的详细推到过程,并用支持递归过程的FORTRAN90语言对算法进行了实现。转载,陈建平-err
  3. 所属分类:行业发展研究

    • 发布日期:2024-05-14
    • 文件大小:190464
    • 提供者:牛万红
« 1 2 3 4 5 67 8 9 10 11 ... 50 »

源码中国 www.ymcn.org