搜索资源列表
Matlab 6.X辅助优化计算与设计 源代码
- 电子工业Matlab 6.X辅助优化计算与设计原代码-electronics industry Matlab 6.X assisted optimization code with the original design
fitcurve
- 二乘法曲线拟合 //X,Y -- X,Y两轴的坐标 //M -- 结果变量组数 //N -- 采样数目 //A -- 结果参数 -Using two multiplication fit the curves//X,Y the site of two axial x,y//M the number of outcome variable//N the number of samples//A the parameter of outcome
fit_line
- //最小二乘法直线拟合 m_FoldList为关键点(x,y)的链表 拟合直线方程(Y=kX+b) -/ / linear least squares fitting m_FoldList as the key point (x, y) of Chain fitting linear equation (Y = C/56 b)
Interpolating
- Finds the polynomial p10 of degree less than or equal to 10 that interpolates cos x on the interval [0, PI/2] at 11 equally spaced points. Study the error betwee between the function and the polynomial at 41 equally spaced points over the same
计算器2.0
- 能运算的函数: sin,cos,tg,ctg,e^,pow(x,y),cosh,sinh,tgh,log10,ln,sqrt,arcsin,arccos, 运算方式: +,-,*,/,绝对值(“[ ]”),^,!, 输入规则: 用键盘或按钮都可,输入完按回车运算,(光标要在最后) sin(21-32)/(12-43) 4(323-4343) 4*(323-4343) e^2-sin3-3^4,(不要输入pow(3,4)) //有无*都可 2*3^4是(2*3)^4
Program2
- 曲线数据处理之曲线插值主要内容:实际观测值总不能稠密到满足任何条件下的需求,对中间没有观测值的点位则需要通过插值获得答案。又实际观测数据往往是离散的,即在X轴上观测数据点之间是不等距的,也需要通过插值使其等距化。-curve data processing for curve interpolation main elements : the actual observed values can not be populated any conditions to meet the needs
lsq
- The module LSQ is for unconstrained linear least-squares fitting. It is based upon Applied Statistics algorithm AS 274 (see comments at the start of the module). A planar-rotation algorithm is used to update the QR- factorization. This makes it
menxa
- Fortran program: Evaluate a sequence of exponential integrals En(x)-Fortran program : Evaluate a sequence of exponential Olshanski E n (x)
LagrangeVB
- 拉个朗日插值公式是把Pn(X)的构造问题转化为n+1插值基函数问题的构造!此软件就是拉哥郎日插值的原程序VB版-Rafah Colon Day interpolation formula is Pn (X) issue of the structure into an n-interpolation function of the structure! This software suite is Lang interpolating the original version of VB pro
global_mini
- 寻找函数的全局极小值,global minimization of contrast function with random restarts the data are assumed whitened (i.e. with identity covariance matrix). The output is such that Wopt*x are the independent sources.-Find function of the minimum value of the overa
ztwd
- 电力系统在台稳定计算式电力系统不正常运行方式的一种计算。它的任务是已知电力系统某一正常运行状态和受到某种扰动,计算电力系统所有发电机能否同步运行 1运行说明: 请输入初始功率S0,形如a+bi 请输入无限大系统母线电压V0 请输入系统等值电抗矩阵B 矩阵B有以下元素组成的行矩阵 1正常运行时的系统直轴等值电抗Xd 2故障运行时的系统直轴等值电抗X d 3故障切除后的系统直轴等值电抗 请输入惯性时间常数Tj 请输入时段数N 请输入哪个时段发生故障Ni
curvefit_C_edition
- c语言版的多项式曲线拟合。 用最小二乘法进行曲线拟合. 用p-1 次多项式进行拟合,p<= 10 x,y 的第0个域x[0],y[0],没有用,有效数据从x[1],y[1] 开始 nNodeNum,有效数据节点的个数。 b,为输出的多项式系数,b[i] 为b[i-1]次项。b[0],没有用。 b,有10个元素ok。-c language version of the polynomial curve fitting. Using least-squares met
qiujie
- 【问题描述】已知线性方程组AX=B,求解该方程组。参考算法: 消去法:将列向量B加到矩阵A的最后一列,构成增广矩阵AB。对AB进行下列三种初等变换,使原矩阵A的部分的主对角线上的元素均为1,其余元素均为0,则原列向量B的部分即为X的值: 1. 将矩阵的一行乘以一个不为0的数 2. 将矩阵的一行加上另一行的倍数 3. 交换矩阵中两行的位置 - [ Question descr iption ] known system of linear equations AX=B, s
cholesky323232
- 平均因子分解法,适用于正定矩阵First, let s recall the definition of the Cholesky decomposition: Given a symmetric positive definite square matrix X, the Cholesky decomposition of X is the factorization X=U U, where U is the square root matrix of X, and satisfies:
Correlation1
- //=== === === === === === ===== //函数说明 //函数名称:Correlation //函数功能:计算最小二乘法拟合的多项式的相关系数 //使用方法:int M------ 拟合多项式的阶数(已知条件) // double *b--- 拟合曲线的系数,排列顺序为由高阶到低阶(已知条件) // double *x--- 结点x轴数据(已知条件) // double *y--- 结点y轴数据(已知条件) // double
Correlation2
- //=== === === === === === ===== //函数说明 //函数名称:Correlation //函数功能:计算最小二乘法拟合的多项式的相关系数 //使用方法:int M------拟合多项式的项数(已知条件) // double *b---拟合曲线的系数,按升次排列(已知条件) // double *x---结点x轴数据(已知条件) // double *y---结点y轴数据(已知条件) // double *Yg--结点估计值
pi(x)
- 用Meisell-Lehmer算法计算PI(x),即计算在小于x范围内的质数个数
CRCx8+x2+x+1
- CRC查表法生成x8+x2+x+1,里面有源程序
PSO
- optimization numerical problems using particle swarm optimization modified by amin zafarian for optimization a definte function (x*sin(4*x)+1.1*y*sin(2*y)
X-square-integral-calculation
- 求x平方0-1范围的积分,程序里面也可以把积分范围改了-Seeking a range of 0-1 x squared Points