资源列表
Gauss_Elimination
- 使用高斯消元法,解线性方程组。写作AX=B型的矩阵形式解决。-Using Gaussian elimination, solution of linear equations. Writing AX = B type of matrix solution.
jisuanfangfa
- 合工大大二计算方法实验的源代码,里面有实验指导书.有牛顿下山,迭代啊什么的-Sophomore calculation experiment source code, which has experimental guide books
10000piCalculation
- C写的一万位圆周率计算的小程序,有详细注释,结构简洁-10 000 pi calculation
neural_net
- Program recognition of elementary images The example shows how to use the mechanism, quadrupeds, as neural networks. First, the program offers two different images. Then point to the third image. Using it is that the mechanism should know - for
Round
- 使用的Java纯代码,可以做一些简单的几何题圆的计算。-Round
steepest
- 实用最优化方法 最速下降法 变尺度法 牛顿法 阻尼牛顿法 皆为可运行程序-The most practical method of steepest descent optimization variable metric method damped Newton' s method Newton' s method can run the program are all
1
- 单纯形法,可在C++环境下运行,可用于线性规划问题的求解-Simplex method can be run under C++ environment can be used for solving linear programming problems
VBjisuanqi
- 实现基本的计算器功能 界面同Windows自带计算器一致-Interface to achieve the basic calculator functions consistent with the Windows built-Calculator
biaozhunjisuanqi
- 基本的计算器功能 带科学计算器 额...就这些-Basic scientific calculator with calculator function
Finite_element_analysis
- 有限元分析,我自己使用delphi写的代码,用了递归,运行速度有点慢-Finite element analysis, I use delphi write the code, using a recursive, runs a little slow
A_LU
- bool lu(double *a, int *pivot, int n);矩阵的LU分解。 假设数组an*n在内存中按行优先次序存放,此函数使用高斯列选主元消去法,将其就地进行LU分解。pivot为输出函数.pivot[0,n)中存放主元的位置排列. 函数成功时返回false,否则返回true. bool guass(double const *lu, int const *p, double *b, int n) 求线性方程组的解。 假设矩阵lum*n为某个矩阵a
A_QR
- void qr(double *a, double *d, int n) 矩阵的QR分解 假设数组an*n在内存中按行优先次序存放,此函数使用HouseHolder变换将其就地进行QR分解。 d为输出参数,d[0,n)存放QR分解的上三角矩阵对角线元素。 bool householder(double const *qr, double const *d, double *b, int n) 求线性代数方程组的解。 假设矩阵qrn*n为某个矩阵an*n的QR分解,在内
