搜索结果
找到约 143 项符合
GAUSS 的查询结果
按分类筛选
数学计算 本题采用的计算方法为:矩阵的 分解和Cholesky分解。根据Gauss消去法的的矩阵意义
本题采用的计算方法为:矩阵的 分解和Cholesky分解。根据Gauss消去法的的矩阵意义,可以将矩阵A分解为一个单位下三角矩阵与一个上三角矩阵的乘积即:即矩阵的LU分解A=LU,进而可以分解为: 的形式。当A为对称矩阵时,A可分解为: 的形式。 ...
数学计算 本题采用的计算方法为:主要用Jacobi迭代和Gauss-Seidel迭代解线性方程组。 Jacobi迭代算法思路:由方程组
本题采用的计算方法为:主要用Jacobi迭代和Gauss-Seidel迭代解线性方程组。
Jacobi迭代算法思路:由方程组 ,使等式左端仅保留向量 ,其他一概放到右端,将 代入上式右端,便可(按顺序逐行)进行计算得到 。
Gauss-Seidel迭代和Jacobi迭代不同的是先计算第一式得到 ,用此数再参与第二式的右端的计算,依次类推。 ...
汇编语言 Gauss跌代法解线性方程组的程序 可以用以参考
Gauss跌代法解线性方程组的程序
可以用以参考
数学计算 Based on Matlab,Gauss Iteration Method
Based on Matlab,Gauss Iteration Method
并行计算 用Gauss消元法、选列主元的Gauss消元法求线性方程组(1)的解
用Gauss消元法、选列主元的Gauss消元法求线性方程组(1)的解,要求输出增广矩阵的消元变化过程。
用Gauss消元法、选列主元的Gauss消元法求线性方程组(1)的解,要求输出增广矩阵的消元变化过程
42x1+2x2+3x3=3
x1+7x2+7x3=1
-2x1+4x2+5x3=-7
算法思想:Gauss消元法是将线性方程组化为上三角形线性方程组,然后再用一个回 ...
数学计算 Using Jacobi method and Gauss-Seidel iterative methods to solve the following system The require
Using Jacobi method and Gauss-Seidel iterative methods to solve the following system
The required precision is   =0.00001, and the maximum iteration number N=25. Compare the number of iterations and the convergence of these two methods
数学计算 We can see that using Gauss-Seidel iterative methods need only 13 timed to make   =
We can see that using Gauss-Seidel iterative methods need only 13 timed to make          
But using Jacobi method after 25 times the    is bigger than that using Gauss-Seidel iterative methods
文件格式 gauss消去法的C++程序
gauss消去法的C++程序,希望大家喜欢,,哈哈
文件格式 gauss顺序消去法及其全选主元的GAUSS消去法的C语言实现
gauss顺序消去法及其全选主元的GAUSS消去法的C语言实现
数学计算 Gauss选列主元消去算法
Gauss选列主元消去算法,给出了C++实现Gauss选列主元消去算法的一个例程,对理解Gauss选列主元消去算法有所帮助。