-
9.2.2
最小二乘法拟合形如f(x)=(a+bx)/(1+cx)的函数(9.2.2(1)),并解决人口预测问题(9.2.2(2))(Least squares fit of the form f (x) = (a+bx)/(1+cx) function (9.2.2 (1)), and to solve the population prediction problem (9.2.2 (2)))
- 2021-01-01 14:38:58下载
- 积分:1
-
Simplex method for linear programming
线性规划中的单纯形法的c实现,代码有测试类,(Simplex method for linear programming)
- 2017-08-25 11:03:43下载
- 积分:1
-
2012-Tax
用VBA在Excel里实现分级计算,实现通过年终奖和月收入计算个人所得税的功能。数据为2012年最新的标准,对于会计电算化人员有非常强的实用性。(VBA in Excel to achieve grade calculated to achieve the functionality of the calculation of personal income tax through the end of the year Award and the monthly income. The data for 2012 the latest standards, computerized accounting personnel have a very strong practicability.)
- 2012-07-16 10:02:51下载
- 积分:1
-
常微分方程数值解法
常微分方程数值解法,又是一个数值分析的常用算法(Numerical Solution of ordinary differential equations, numerical analysis is a common algorithm)
- 2005-01-31 22:13:30下载
- 积分:1
-
bp
说明: c++编程bp神经网络,用c++语言编写的bp神经网络(C++ programming bp neural network, bp neural network written in c++ language.)
- 2018-04-28 15:09:52下载
- 积分:1
-
Levenberg-Marquardt_Method
说明: LM算法的c语言实现
拟合的函数为gauss函数(Levenberg-Marquardt Method)
- 2021-04-11 16:18:58下载
- 积分:1
-
71001
基于全相位谱分析的相位差频谱校正法,结合了全相位FFT与传统FFT谱分析法。(Phase Difference Correcting Spectrum Method)
- 2009-05-19 21:40:09下载
- 积分:1
-
p2mesh
划分网格一个开源的库,有限元的算法,很好用(Meshing an open source library = for finite element)
- 2013-07-22 15:34:38下载
- 积分:1
-
ErosionTabakoff
用于拓展fluent磨损模型的UDF,采用tabakoff经验公式描述磨损量。(a udf to optimize erosion model in Fluent)
- 2021-03-05 17:19:31下载
- 积分:1
-
na7
Orthogonal Polynomials Approximation
数值分析,计算正交基多项式的系数
(Given a function f and a set of m >0 distinct points . You are supposed to write a function to approximate f by an orthogonal polynomial using the exact function values at the given m points with a weight assigned to each point . The total error must be no larger than a given tolerance.
Format of function
int OPA( double (*f)(double t), int m, double x[], double w[], double c[], double*eps )
where the function pointer double (*f)(double t) defines the function f int m is the number of points double x[] contains points double w[] contains the values of a weight function at the given points x[] double c[] contains the coefficients of the approximation polynomial double*eps is passed into the function as the tolerance for the error, and is supposed to be returned as the value of error. The function OPA is supposed to return the degree of the approximation polynomial.
Note: a constant Max_n is defined so that if the total error is still not small enough when n = Ma)
- 2011-11-27 11:47:21下载
- 积分:1