Welcome![Sign In][Sign Up]
Location:
Search - interpolation Newton

Search list

[Mathimatics-Numerical algorithms牛顿插值的差商迭代算法

Description: 牛顿插值的差商迭代算法,c语言实现-Newton interpolation algorithm to worse, the C Language
Platform: | Size: 2048 | Author: | Hits:

[Mathimatics-Numerical algorithmsnewton chazhi

Description: 牛顿插值的差商迭代算法-Newton interpolation algorithm to poor
Platform: | Size: 2048 | Author: | Hits:

[Othern次Newton n次lagarange 分段三次Hermite插值

Description: n次Newton n次lagarange 分段三次Hermite插值算法-n n lagarange cubic interpolation algorithm
Platform: | Size: 1024 | Author: 张三华 | Hits:

[Mathimatics-Numerical algorithmsNewton 插值程序

Description: 本程序的要求是已知几个节点x及节点函数f(x),要求近似函数!只要输出每点函数,对角线上的值,和最后一行的值,为继续插值准备! 例如:0.00 0.00000 0.20 0.20134 0.30 0.30452 0.50 0.52110 得到结果:0.00000 0.20134 1.006700 0.30452 0.083666 0.52110 1.082900 0.170333 0.173334 f(0.230000)=0.249337 Rx(0.230000)=-1.46917e-09f-the procedural requirements are known, several nodes and node x function f (x), requiring similar function! As long as output per function point, the value of a diagonal, and the last line of duty, prepared to continue interpolation! For example : 0.00 0.00000 0.20134 0.30 0.20 0.50 0.52110 0.30452 outcome : 0.00000 0.30452 0.20134 1.006700 1.082900 0.083666 0.52110 f 0.170333 0.173334 (0.230000) = 0.249337 Rx (0.230000) =- 1.46917e- 09f
Platform: | Size: 1024 | Author: 无人 | Hits:

[Graph programnewton插值绘制曲线

Description: 用牛顿插值法绘制曲线,同时涉及vb与excel的连接!-with Newton drawing curve interpolation, and excel involved vb link!
Platform: | Size: 3072 | Author: 杨磊 | Hits:

[Windows Develop非等节点的分段M次Newton插值

Description: 非等节点的分段M次Newton插值,属于数值方法的内容-non-node sub M meeting Newton interpolation, numerical methods belong to the content
Platform: | Size: 5120 | Author: 姚天伟 | Hits:

[Windows DevelopNewton1234

Description: 牛顿插值法,牛顿插值法 牛顿插值法 -Newton interpolation method, the Newton's interpolation Newton inte rpolation Newton inte rpolation Newton interpolation
Platform: | Size: 1024 | Author: | Hits:

[matlabMATLABpro

Description: 该程序包包含大量的matlab程序,比如Euler解常微分方程、neville插值、newton插值、Taylor解微分方程、改进平方根法、追赶法-The package includes a large number of Matlab program, such as Euler solutions ordinary differential equations, Neville interpolation, Newton interpolation, Taylor Xie differential equations, square root of improvement, chasing method, etc.
Platform: | Size: 20480 | Author: 叶建槐 | Hits:

[AlgorithmNewton-lagrange

Description: 牛顿-拉格朗日插值法C++源代码,最新修改的通码,网友可以-Newton-Lagrange interpolation C source code, the latest revision of immigration code, net surfers can s
Platform: | Size: 1024 | Author: 文理 | Hits:

[matlabEOM

Description: 拉格朗日插值多项式拟合,牛顿插值多项式,欧拉方程解偏微分方程,使用极限微分求解导数(微分),微分方程组的N=4龙格库塔解法,雅可比爹迭代法解方程AX=B,最小二乘多项式拟合,组合辛普生公式求解积分,用三角分解法解方程AX=B-Lagrange interpolation polynomial fitting, polynomial interpolation Newton, Euler equations partial differential equations, Limit the use of derivative solving differential (differential), the equations of N = 4 Runge- Kutta method. Jacobian Davis iterative method of solving equations AX = B, least squares polynomial fitting, portfolio Simpson formula for integration, with a triangular decomposition method of solving equations AX = B.
Platform: | Size: 7168 | Author: wangshen | Hits:

[Otherokokokok

Description: 几个数值分析类MATLAB程序,内容如下:拉个朗日插值,三次样条插值法 ,NEWTON插值,hermite插值,mewton形式的hermite插值,平方根法-several types of numerical analysis computer program, which reads as follows : Take a Long Day interpolation, cubic spline interpolation, Newton-interpolation, Hermite interpolation, Hermite mewton form of interpolation, Square Root Law
Platform: | Size: 1024 | Author: 唐成玉 | Hits:

[Algorithmchazhisuanfa

Description: 已知f(xn)=yn ,n=0,1,2,…,N;求通过这N+1个节点{(xn,yn)| n=0,1,2,…,N }的插值函数Pn (x)。 设计出具体的程序,分别使用拉格朗日插值,牛顿插值和三次自然样条三种算法绘制出相应的插值曲线。用三条不同颜色的曲线来表示三种插值方法在一段区间内的插值函数。要求动态显示曲线绘制全过程。-Known f (xn) = yn, n = 0,1,2, ..., N seeking the passage of the N+ 1 nodes ((xn, yn) | n = 0,1,2, ..., N) of the intercalation value function Pn (x). Design a specific procedure, namely the use of Lagrange interpolation, Newton interpolation and three natural three-spline algorithm to map out the corresponding interpolation curve. Using three different colors to indicate the three curve interpolation methods over a period of range of interpolation function. Requirements of dynamic display curve drawing the whole process.
Platform: | Size: 16384 | Author: jack | Hits:

[OtherNewton

Description: //xi 0.5 1.0 1.5 2.0 2.5 3.0 //f(xi) 0.541688 -0.042060 0.375089 0.624706 -0.887597 0.099809 //输入节点数及节点数据,计算并输出差商表; //输入待使用的插值多项式次数,待求的自变量 x,输出内插需要选择的节点及 Newton 插值多项式; //用 3 次 Newton 插值多项式计算并输出 f (1.25); //用 5 次 Newton 插值多项式计算并输出 f (1.987)。 -//xi 0.5 1.0 1.5 2.0 2.5 3.0// f (xi) 0.541688-0.042060 0.375089 0.624706-0.887597 0.099809// input nodes and the node data, calculate and output difference quotient table // input to be used in interpolation polynomial the number of variables to be seeking self-x, output interpolation need to select the node and the Newton interpolation polynomial // with 3 times Newton interpolation polynomial is calculated and output f (1.25) // by 5 Newton Interpolation calculated and the output value of polynomial f (1.987).
Platform: | Size: 1024 | Author: 鹰隼 | Hits:

[matlabMatlab-Newton-Interpolation-Code

Description: 这个matlab程序实现了牛顿插值 (Newton s Interpolation )算法-The matlab program Interpolation Newton (Newton s Interpolation) algorithm
Platform: | Size: 47104 | Author: liyuedsg | Hits:

[matlabnewtonchazhi

Description: newton插值应该比lagrange好一点点,适合求解线性方程组,-lagrange interpolation newton than a little bit of good, suitable for solving linear equations,
Platform: | Size: 2048 | Author: 桂鹏 | Hits:

[Algorithmprogram

Description: 程序包中含有Lagrange插值、Newton插值、Hermite插值、jacobi迭代、gauss迭代、 超松弛迭代、cholesky分解-Package contains Lagrange interpolation, Newton interpolation, Hermite interpolation, jacobi iteration, gauss iteration, ultra-relaxation iteration, cholesky decomposition
Platform: | Size: 3072 | Author: funintears | Hits:

[matlabchazhi

Description: Lagrange插值、Newton插值函数等插值函数,函数为数值分析课本上的例题。-Lagrange interpolation, Newton interpolation function, such as interpolation function, function for the numerical analysis of the textbooks on the sample questions.
Platform: | Size: 32768 | Author: toidy | Hits:

[AlgorithmNewton

Description: 牛顿插值和三次样条插值的matlab实现-Newton interpolation and cubic spline interpolation
Platform: | Size: 2048 | Author: 张阳军 | Hits:

[Windows Developnewton

Description: N次牛顿向前插值计算公式通用程序及流程图 -N times the Newton forward interpolation formula for calculating general procedures and flow chart
Platform: | Size: 5120 | Author: kelly | Hits:

[Algorithminterpolation

Description: matlab各种插值算法应用实例,包括:拉格朗日插值、艾特肯插值法、牛顿插值法、 高斯插值法、 埃尔米特插值法、 分段埃尔米特插值法、样条插值、有理分式插值法、分片双线性插值、二元三点拉格朗日插值及分片双三次埃尔米特插值-a variety of interpolation algorithm matlab application examples include: Lagrange interpolation, Aitken interpolation, Newton interpolation, Gauss interpolation, Hermite interpolation, sub-Hermite interpolation, spline interpolation, rational fraction interpolation piecewise bilinear interpolation, dual three-point Lagrange interpolation and piecewise bi-cubic Hermite interpolation, etc.
Platform: | Size: 10240 | Author: | Hits:
« 12 3 4 5 6 7 8 9 10 ... 31 »

CodeBus www.codebus.net