搜索资源列表
crout
- 用CROUT分解法求解三对角方程.对于对角占优的三对角方程可以求出数值稳定解.
求解线性方程组
- 求解线性方程组,采用三种方法:Guass消去法、Guass列主元素消去法和直接三角形分解法(Boolittle方法 \\ Crout方法)
shiyan
- 自己写的数值分析中的一些常用算法,包括GS,jacobi,crout分解,dijistra等,比较全面-these process for GS jocobi corout dijistra and others
Crout
- 用Crout分解法分解系数矩阵,并通过分解得到的矩阵求解,是解方程简单化了,很实用-Crout decomposition method used decomposition coefficient matrix, and through decomposition of the matrix to be solved is the solution of simplified equation, it is practical
Crout_Solve
- Solve Ax=B with Crout s method
Crout
- Crout三角分解法,用于解相关线性方程组。-Crout
crout-for-eqations
- 用追赶法计算n*n三对角方程组,要求计算设计当n=5,和当n=3两种情况-Catch-up method using n* n tridiagonal equations, the requirements in the design when n = 5, and two cases when n = 3
crout
- 这个是克劳特分解的源代码,上矩阵论课的同学可以参考一下-This is the source code Claut decomposition, the matrix theory lessons students can refer to
Crout1
- 此文件为MATLAB的M文件,功能是通过Crout分解法,解线性方程组。-This file is a MATLAB M-file function is through the the Crout decomposition method for solving linear equations.
crout-diagonally
- 此程序用于计算追赶法对角占优的三对角矩阵的crout分解。整个程序可分为读文件和计算两部分-This program is used to calculate the chasing method decomposition the tridiagonal matrix crout diagonally dominant. The entire program read documents and calculation can be divided into two parts
crout_algorithm
- Crout Algorithm for Power Flow
crout
- 矩阵的crout分解,将矩阵分解为下三角矩阵和上三角矩阵的乘积,其中上三角矩阵为单位上三角矩阵。-Matrix crout decomposition, the matrix into a lower triangular matrix and upper triangular matrices, in which the upper triangular matrix is the upper triangular matrix.
crou
- Crout s algorithm is used when the inversion of large matrices, say 1000X1000 is difficult. So Crout s algorithm uses LU decomposition method to get the same results as the inversion of Matrix.
NR_crout
- Power system load flow analysis using NR Power Flow method with implementation of crout algorithm .
Crout
- The crout method in Numerical Methods
3 numerical methods crout, gauss and jordan
- three methods crout gauss jordan
myLU1
- matlab实现LU分解的Crout形式,例如[L,U]=myLU1(A),把A分解为单位上三角U和下三角L.MATLAB版本为2014b-matlab achieve Crout form LU decomposition, such as [L, U] = myLU1 (A), the A decomposition of the unit triangular U and lower triangular L.MATLAB version 2014b
LU-Factorization
- The function decomposes the matrix A into a lower triangular matrix L and an upper triangular matrix U, using Crout s method such that A=LU. Input variables: A The matrix of coefficients. Output variable: L Lower triangular matrix. U Uppe
mydet
- 利用LU分解(Crout算法)计算矩阵的行列式。-Use LU decomposition (Crout algorithm) to calculate the determinant of a matrix.