-
LeastSquareFitting
利用最小二乘方法,对三维数据进行平面拟合,并对数据进行误差提出(least square plane fitting
)
- 2020-12-27 16:09:02下载
- 积分:1
-
signalpro
说明: 在学习数字信号处理算法程序中用VC编写的几个通用算法程序。
卷积计算/DFT与FFT实现/(In the learning process of digital signal processing algorithms using VC General Algorithm for the preparation of several procedures. Convolution calculation/DFT and FFT realization /)
- 2021-02-15 09:49:48下载
- 积分:1
-
eigen
求实对称矩阵的特征值特征向量,内有读入数据文件。(Realistic symmetric matrix eigenvalue eigenvector, there are read into the data file.)
- 2013-06-01 16:03:07下载
- 积分:1
-
Factorial
C++的求阶乘的程序,对本科C++课程可能有些帮助(Factorial in C++ program, it maybe helpful for some C++ course)
- 2011-12-22 17:46:43下载
- 积分:1
-
拉格朗日插值法_matlab
数学最优问题中,拉格朗日乘数法(以数学家约瑟夫·路易斯·拉格朗日命名)是一种寻找变量受一个或多个条件所限制的多元函数的极值的方法。(In the mathematical optimization problem, the Lagrange multiplier method (named by the mathematician Joseph Luis Lagrange) is a method of finding the extremum of a multivariate function which is restricted by one or more conditions.)
- 2018-05-01 21:20:07下载
- 积分:1
-
data_nihe
曲线拟合的最小二乘法要解决的问题,实际上就是求以下超定方程组的最小二乘解的问题。(Least squares curve fitting to solve the problem, in fact, find the following overdetermined least squares solution for the problem group.)
- 2021-03-02 21:09:33下载
- 积分:1
-
Ansys-bridge
ANSYS 分析一座预应力连续刚构桥的命令流,很实用哦(ANSYS analysis of a prestressed continuous rigid frame bridge command stream, and very practical!)
- 2012-05-30 12:01:35下载
- 积分:1
-
singnui
BP神经网络的整个训练过程,matlab编写的元胞自动机,独立成分分析算法降低原始数据噪声。( The entire training process BP neural network, matlab prepared cellular automata, Independent component analysis algorithm reduces the raw data noise.)
- 2016-09-15 11:20:27下载
- 积分:1
-
NONLINEAR-FINITE-ELEMENT-AND-PROGRAM
非线性有限元及程序这本书,很有用的,程序也很全面(NONLINEAR FINITE ELEMENT AND PROGRAM)
- 2021-03-31 10:19:09下载
- 积分: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