资源列表
SdhAns
- 用visual basic编写的有限元程序!-using visual basic preparation of the finite element program!
dashuxiangchen
- 大数项乘法 譬如1234567892345678*1234567891223343. 采用数组的方式来解决存储空间不够的问题!-majority of items such as multiplication * 123456789122 1234567892345678 3343. using an array of methods to resolve the lack of storage space!
NEWMARKmethod
- 这是求多柔体转子纽马克法的程序。以拉格朗日方程为基础,结合有限元发计算-is seeking more flexible rotor Newmark Act procedures. To Lagrange equation, the FEM calculation
axlechange
- 本程序是利用mathematic进行柔性体坐标变换计算。Mathematic是一个计算机代数系统,它能够做数值,符号和图形运算,主要用于科学和工程方面.-use of this procedure is for flexible body in_array coordinate transformation calculation. Mathematic program is a computer algebra system, it can do numerical, graphical an
lt5m
- 自己编的matlab厂程序。这是将局部坐标系的坐标转化为球面坐标系的坐标,非常实用。-own addendum to the Matlab plant procedures. This is the will of local coordinates into spherical coordinates, very practical.
h2
- 此程序为多体动力学中的重要计算程序。主要计算空间板的质量矩阵-procedure for multi-body dynamics of the important program. Mainly for the space plate mass matrix
youxushuzudeduifenchazhao
- 用对分查找法在有序数组中查找值在指定区间内的所有元素(C语言)。-used to search for hours in orderly array find value within the specified interval of all elements (C language).
gaosifangfajisuanduochongjifen
- 1.功能 用高斯方法计算n重积分(C语言) 2.参数说明 int n : 积分重数 int js[n] : js[k]表示第k层积分区间所划分的子区间 void (*ss)() : 指向计算各层积分上、下限的函数名(用户自编) double (*f)() : 指向计算被积函数值的函数名(用户自编) double gaus() : 函数返回积分值 3.文件说明 gaus.c为函数程序 gaus0.c为主函数程序-1. Gaussian funct
qiufeixianxingfangchengzuzuixiaoerchengjiedeguangy
- 1.功能 利用广义逆求解无约束条件下的优化问题(C语言) 2.参数说明 int m : 非线性方程组中方程个数 int n : 非线性方程组中未知数个数 double eps1 : 控制最小二乘解的精度要求 double eps2 : 用于奇异值分解中的控制精度要求 double x[n] : 存放非线性方程组解的初始近似值X(0),要求各分量不全为0 int ka : Ka=max{m,n}+1 void (*f)() : 指向计算非线性方程组中各方程
qiufeixianxingfangchengyigeshigendelianfenshifa.ra
- 1.功能 利用连分式法求非线性方程f(x)=0的一个实根(C语言) 2.参数说明 double *x : 指向迭代初值,返回时指向迭代终值 double eps : 控制精度要求 double (*f)() : 指向计算f(x)值的函数名(由用户自编) int pqrt() : 函数返回迭代次数 3.文件说明 pqrt.c为函数程序 pqrt0.c为主函数程序-1. Continued Fractions functional method usi
qiuyibanhanglieshidezhi
- 1.功能 用全选主元高斯消去法计算n阶方阵A所对应的行列式的值(C语言) 2.参数说明 double a[n][n] : 存方阵A的元素,返回时被破坏 int n : 方阵A的阶数 double sdet() : 函数返回行列式的值 3.文件说明 sdet.c为函数程序 sdet0.c为主函数程序-1. Function with all the main election yuan Gaussian elimination method n matr
qiujuzhendezhi
- 1.功能 用全选主元高斯消去法计算矩阵A的秩(C语言) 2.函数参数说明 double a[m][n] : 存放mxn阶矩阵A的元素,返回时将被破坏 int m : 矩阵A的行数 int n : 矩阵A的列数 int rank() : 函数返回A的秩 3.文件说明 rank.c为函数程序 rank0.c为主函数程序