搜索资源列表
Householder
- Householder法求解最小二乘问题。可以避免常规方法遇到奇异矩阵(即行列式|A|接近零)时误差太大的问题。本方法的精度非常高。-Householder method least squares problems. Avoid conventional methods encountered singular matrix (that is determinant | A | close to zero) error much of a problem. The accuracy of th
FormulaProcessor_beta1_CSharp
- 功能说明: 次组件提供的功能有二: 1、解析出数学表达式中的参数 2、计算数学表达式 此组件不但可以解析和计算数学表达式,还提供了一系列的数学基本函数,可应用于表达式中一块处理。提供的数学基本函数有:将值舍入到最接近的整数 rount(x)、向下取整函数 int(x)、向上取整 ceiling(x)、求两个数中最大数的函数 max(a,b)、求两个数中最小数的函数 min(a,b)、幂函数 pow(x,n)、求平方根的函数 sqrt(x)。 下载地址:http
CubicMultinomialRegress
- 一、 一元三次回归方程 CubicMultinomialRegress.cs 方程模型为Y=a*X(3)+b*X(2)+c*X(1)+d public override double[] buildFormula() 得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是d,c,b,a。 以后所述所有模型的系数存放均与此相同(多元线性回归方程除外)。 public override double forecast(double x) 预测函数,根据模型得到预测结果
ExponentRegress
- 指数回归方程 ExponentRegress.cs 方程模型为 public override double[] buildFormula() 得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。 public override double forecast(double x) 预测函数,根据模型得到预测结果。 public override double computeR2() 计算相关系数(决定系数),系数越接近1,数据越满足该模型。
LogarithmRegress
- 对数回归方程 LogarithmRegress.cs 方程模型为 Y=a*LnX+b public override double[] buildFormula() 得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。 public override double forecast(double x) 预测函数,根据模型得到预测结果。 public override double computeR2() 计算相关系数(决定系数),系数越接近1,数据
pai
- 计算出π的值 用0~9这10个数字组成一些五位数字,要求使用的数字不能重复, 然后在这些数字中找到那些相除的结果接近π的组合
shuzhi
- 数值分析中实现对给定数表进行插值、曲面拟合、逼近,最终拟合出最接近的曲线方程
最小二乘法程序代码
- 用最小二乘法拟和数据,得到一条最接近所给数据的直线-least squares method to be used and the data obtained by one closest to the straight-line data
RD
- 分数阶傅里叶变换快速算法,利用卷积原理,计算量接近fft-Fractional Fourier transform fast algorithm
xiangshanhongye
- 昨天fenix124带着他的未来女朋友去逛香山,非常遗憾他们没有看见红叶,很多枫树都是绿的。 题目就是建立一种模型让你计算一下什么时候去香山比较好。模型如下: 假设每棵树的美观都对应着一个数值。绿叶比较多的时候值为正,当它完全变红的时候为0,如果红叶慢慢掉落就成为负的了。 当红叶掉完了,它的美感值就固定了。枫树的美感值变化快慢程度不同,有些2天变化一下,而其他的可能会慢些。 看枫叶最好的时候是所有枫叶尽量接近红色,就是所有美感值的绝对值之和最小。 -xiang shan ho
singlestageinvertedpendulumsimulation
- 本文引入了基于扩展线性化的非线性反馈控制方法,推导了非线性状态反馈控制器的设计,并通过对单级倒立摆理想模型 的仿真过程中反映出该方法更接近系统实际情况的控制策略。-In this paper, based on the introduction of linear expansion of the nonlinear feedback control method, derived non-linear state feedback controller design, and throug
Newton
- 可以计算非线性方程的近似解,通过牛顿迭代法逐渐接近真值。-Can calculate the approximate solution of nonlinear equations by Newton' s iterative method move closer to true value.
ParallelclosetoFranceLaunchVehicleTrackinSystem.ra
- 平行接近法跟踪运载火箭系统拦截弹做匀速率运动。里面微分方程是用欧拉法求解的,为了提高精确度,改成四阶龙格库塔法-Parallel close to France Launch Vehicle Tracking System
disturbance
- 本程序用于导弹或无人飞行器运动特性的求解,主要是运用非常接近实际模型的动态扰动模型,可直接用于它门的姿态控制,飞行轨迹控制,是其最重要的核心-disturbance
numerical_analysis
- 计算一给定方阵的最小特征值、最大特征值和按模最小的特征值,计算与给定值最接近的特征值,并计算方阵谱范数的条件数和行列式的值,要求设计算法,编程实现计算任务,给出设计思路和计算结果,并进行分析。-Calculation of the minimum for a given matrix eigenvalue, maximum eigenvalue and minimum eigenvalue by mode to calculate the value of the closest to a gi
suijishu
- 产生伪随机数,很接近真正的随机数,基本无重复。-Pseudo-random number generation, very close to true random numbers, almost no repetition.
GWW
- 目前理论物理计算方面最准最接近试验值的计算方法,只有几个大软件内置了gw方法。-Theoretical Physics is currently the most accurate calculation method of calculating the value of the closest test, only a few large software built gw method.
buaa_shuzhi_diyiti
- 已知题目501×501的矩阵A,要求求出:①A的最小特征值 、最大特征值 、绝对值最小的特征值 ,②A的与数 最接近的特征值 (k=1,2,…,39),③A的条件数 和行列式的值 。-Known subject of the matrix 501 × 501 A, requires obtained: ① A minimum eigenvalue, maximum eigenvalue, the smallest absolute eigenvalue, ② A number of the cl
VOF_1D
- 一维问题的界面扑捉方法_体积分数法VOF,可以当作接近精确解使用,对刚入门比较适宜-One-dimensional interface capture method _ volume fraction method VOF, can be used as close to the exact solution to use for beginners to more appropriate
finite-voleme-method
- 界面扑捉方法_体积分数法VOF,可以当作接近精确解使用,对刚入门比较适宜-One-dimensional interface capture method _ volume fraction method VOF, can be used as close to the exact solution to use for beginners to more appropriate