搜索资源列表
xianxingfangcheng
- 编程序,按如下要求来求解n元一次线性方程组(假设方程组具有唯一解)。 (1)方程个数n之值由用户通过键盘输入; (2)方程组存放在“增广矩阵”A之中,而n行n+1列的A存储空间通过new来动态分配,且A的各元素值也由用户通过键盘输入; (3)方程组的解存放于“向量”B之中,而具有n个元素的B存储空间也通过new来动态分配。 -programmed by the following demands to solve an n-linear equation (equatio
CMatrixClass
- 1.内存管理一律根据实际需要的大小在堆中动态分配内存。 2.边界检查。如果数组下标超越了数组大小界限,会给出警告信息,可以防止非法内存访问以及方便程序的调试。 3.重载了+,-,*,+=,-=,数乘等常见运算符; 4.可以保存数组为二进制数据文件和文本文件两种形式,也可以从二进制数据文件和文本文件读取数据到数组。 5.实现了和矩阵相关的线性代数方程组求解算法。一是高斯选主元消去法二是针对三对角矩阵的追赶法。 6.静态函数Bspline3():3次
gaos
- 高斯迭代法求解线性方程组的源代码!
gsxy
- // 带有列主元的高斯消元法 // 功能: 求解线性方程组 Ax = b // 参数: A - 指向n*n系数矩阵的指针 // b - 常数向量的指针 // n - 方程组的维数 // 返回值:0 - 如果成功。线性方程组的解保存在 b 中 // 1 - 求解失败
预测
- 数据预测算法,主要是一元n次方程的回归预测实现。* 预测分析--本算法只适用于有明显线性趋势的数据 * 默认为一元二次曲线方程法 * * 本程序主要涉及有两个算法 * 1.用最小二乘原理找到线性方程组的系数和常数。 * 2.解线性方程组 * 本程序在解线性方程组中,由于考虑到收敛性问题未采用迭代法,而是采用Gauss-Jordan消去法来解决。-data prediction algorithm is mainly one yuan n equation forecast to achieve
高斯-赛德尔算法
- 高斯-赛德尔算法 解线性方程组
高斯-赛德尔迭代法解线性方程组的C++程序
- 这是高斯-赛德尔迭代法解线性方程组的C++程序,适合程序设计初学者和大学生课程设计-This is the Gauss- Seidel iterative method for solving linear equations of the C++ program, designed for beginners and students of the program curriculum design
yiyuanxishuduoxiangshi
- 这是一个一元稀疏多项式计算器 能够实现多项式的输出 降幂 还有加法 减法 乘法功能 除此之外还有能够对不同阶数的线性方程组求解 对于无解时会提醒。此程序供大家参考。-This is a one yuan sparse polynomial calculator can realize the output power and down polynomial function besides addition and subtraction method to different order nu
Deliver
- 包含冒泡排序算法函数模板和数据结构中的字符串查找例子及解线性方程组的3个典型算法加演示。-Contains the Bubble Sort algorithm function templates and data structure of string to find examples and solutions of linear equations of the three typical algorithms plus demo.
Gauss
- 高斯方法解n阶线性方程组的非常详细的方法-Gauss method to solve n-order linear equations of a very detailed way
guass
- 高斯消去法解线性方程组,可以解一般的线性方程-Gaussian elimination solution of linear equations can be a general solution of linear equations
jacobiQR
- jacobi迭代法程序和矩阵的QR分解算法,jacobi用来解线性方程组,比直接求解速度快-jacobi
gaosi
- 高斯约旦法求解矩阵逆,用来求解多元线性方程组,在求解最小二乘时常常使用-Solving matrix inverse Gaussian Jordan and France, used to solve multiple linear equations, least-squares solution often used in
CAA
- 计算机辅助电路分析设计:使用C/C++可任意输入电路参数,然后解线性方程组,采用链表方式,不是全矩阵。-Computer-aided circuit analysis and design: Using C/C++ input circuit parameters can be arbitrary, then the solution of linear equations, using the list mode, not the whole matrix.
MMatrixxa
- 关于矩阵运算的各种数值算法,包括实(复)矩阵求逆,对称正定矩阵与托伯利兹矩阵阵的求逆,线性方程组的常用解法,矩阵的各种分解方法,特征向量与特征值的求解等等。 -Numerical algorithms on a variety of matrix operations, including real (complex) matrix inversion symmetric positive definite matrix inverse matrix array with Tuobo Lee
solutions
- 各种常见的解方程组方法:Cholesky分解法解方程组、LU分解线性方程组、高斯消去法解方程组、列主元解线性方程组、雅可比迭代解线性方程组-Common solution of equations: the Cholesky decomposition of equations, LU decomposition of linear equations, Gaussian elimination method for solving equations, column element for s
共轭梯度算法fortran程序
- 该算法用fortran编写,使用于AX=B的线性方程组求解,可以用于地球物理反问题等,相对于以前他们所编写的代码 形式简单。
comboaember
- 在MPI上用并行LU分解求解线性方程组的源程序,()
diedaijiefangchengzu
- 矩阵三角分解法解方程 雅可比迭代法、高斯赛德尔迭代法、SOR迭代法解线性方程组。(Matrix triangulation method for solving equations Jacobi iterative method, Gauss Seidel iteration method and SOR iterative method are used to solve linear equations.)
gaus
- 用高斯消去法解线性方程组,返回值:整型。运行成功则返回1,失败则返回0(Using gaussian elimination to solve linear equations, return value: integer.Run success returns 1, failure returns 0.)