说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> "牛顿类"迭代法
1)  "Newton Like" iteration method
"牛顿类"迭代法
2)  Newton iteration method
牛顿迭代法
1.
Baseline estimats of interferometric SAR based on Newton iteration method;
基于牛顿迭代法的干涉SAR基线估计
2.
Analysis of the convergence rate on Newton iteration method;
牛顿迭代法收敛速度分析
3.
A model of calculating strip steel intermediate thickness in the load-quick-set cold continuous rolling was established by using the coherent principle of Newton iteration method,which was applied in on the 1220mm five-stand cold tandem mill in Bao Steel tandem cold mill strip thin co.
在利用泰劳级数展开并忽略高次项将相关非线性问题简化为线性问题的数学处理方法基础上,采用牛顿迭代法的相关原理,提出了1套适合冷连轧机快速负荷设定的带材中间厚度计算模型。
3)  Newton iteration
牛顿迭代法
1.
Caculation of water surface profie for open channel with Newton iteration;
明渠水面线能量方程的牛顿迭代法求解
2.
Based on the analysis of the look-up table method and Newton iteration algorithm the paper improves the Newton iteration method for the square root calculation.
在分析了查表法以及牛顿迭代法的基础上,对开平方计算的牛顿迭代法进行了改进。
3.
It Newton iteration is used in the analysis of math value,and the simplicity formula is given to resolve(including original initial value formula and advanced approximation formula),which can be characterized by fast speed and easy remembering.
采用数值分析中的牛顿迭代法求反渐开线函数的根,并给出了符合精度要求的解算反渐开线函数的简单公式(包括原始初值公式和近似值精化公式),具有迭代收敛速度快、简单易记的优点,它们适用于[0,π/2]的全区段,免除了分段计算的烦恼,并运用VB编写计算机程序,从而实现反渐开线函数快速求根的目的。
4)  Newton method
牛顿迭代法
1.
The paper provide a way used Newton method and put forward the calculating principle of the common normal line, the flow chart,the alternating equation and programming.
以圆弧齿轮传动及其测量尺寸公法线长度的计算原理和公式为依据 ,以6 7型单圆弧齿轮为例 ,提出利用牛顿迭代法计算圆弧齿轮公法线的原理、求解方程流程图、迭代方程及编程 ,比手工计算大大降低了工作量 ,而且精度也得到了很好保
2.
In this paper,the calculations are decreased efficiently and the result has the same precision in calculation by optimizing the initial number of Newton method and design of divider.
文中采用牛顿迭代法,通过对牛顿迭代初始值的优化及除法器的优化设计,在保证计算精度的前提下有效地降低了求模运算量,并已应用于实际雷达系统中。
5)  Newton-iterative method
牛顿迭代法
1.
Then,iterative equation is set up with Newton-iterative method according to hyperbolic positioning equation of under-water DGPS.
本文基于差分GPS水下立体定位系统的基本观测方程,简要介绍了迭代法的基本原理,从双曲线差分定位观测方程出发,使用求解非线性方程组常用的牛顿迭代法构造迭代方程式,并用实测数据验证了该算法的可行性。
2.
The Newton-iterative method is adopted in order to acq.
由于得到的简化微分方程组为非线性方程组,因此本文选用牛顿迭代法来求解此微分方程组。
3.
The Newton-iterative methodis used to solve t.
求解夹层圆板的非线性微分方程组时选取了牛顿迭代法,此法公式简明,收敛速度快。
6)  Newton iterative method
牛顿迭代法
1.
The usage and the procedure of Newton iterative method in natural water surface line calculation
牛顿迭代法在水面线计算中的运用及程序设计
2.
In this article,based on the radical three-dimension photoplasticity theory,the three-dimensional strain distribution in the part of cross wedge rolling was solved by using the Matlab as a programming tool and Newton iterative method as a solution theory.
在分析三维光塑性基本理论的基础上,以MATLAB软件为平台,依据牛顿迭代法的原理,采用M语言编程求解了楔横轧制件内部的三维应变分布,成功地实现了对楔横轧工步的光塑性数据处理和分析,提高了数据处理效率和计算精度,所得应变分布与实验结果吻合。
3.
Secondly,Newton iterative method is employed to solve the forward kinematics.
该方法首先分别以动平台的转动角度和驱动杆的杆长为广义坐标,建立3-3TPS1S并联机器人机构的正、反向运动学模型;然后运用牛顿迭代法进行运动学正向求解。
补充资料:牛顿迭代法

牛顿迭代法(newton's method)又称为牛顿-拉夫逊方法(newton-raphson method),它是牛顿在17世纪提出的一种在实数域和复数域上近似求解方程的方法。多数方程不存在求根公式,因此求精确根非常困难,甚至不可能,从而寻找方程的近似根就显得特别重要。方法使用函数f(x)的泰勒级数的前面几项来寻找方程f(x) = 0的根。牛顿迭代法是求方程根的重要方法之一,其最大优点是在方程f(x) = 0的单根附近具有平方收敛,而且该法还可以用来求方程的重根、复根。

设r是f(x) = 0的根,选取x0作为r初始近似值,过点(x0,f(x0))做曲线y = f(x)的切线l,l的方程为y = f(x0) f'(x0)(x-x0),求出l与x轴交点的横坐标 x1 = x0-f(x0)/f'(x0),称x1为r的一次近似值。过点(x1,f(x1))做曲线y = f(x)的切线,并求该切线与x轴的横坐标 x2 = x1-f(x1)/f'(x1),称x2为r的二次近似值。重复以上过程,得r的近似值序列,其中x(n+1)=x(n)-f(x(n))/f'(x(n)),称为r的n+1次近似值,上式称为牛顿迭代公式

解非线性方程f(x)=0的牛顿法是把非线性方程线性化的一种近似方法。把f(x)在x0点附近展开成泰勒级数 f(x) = f(x0)+(x-x0)f'(x0)+(x-x0)^2*f''(x0)/2! +… 取其线性部分,作为非线性方程f(x) = 0的近似方程,即泰勒展开的前两项,则有f(x0)+f'(x0)(x-x0)=f(x)=0 设f'(x0)≠0则其解为x1=x0-f(x0)/f'(x0) 这样,得到牛顿法的一个迭代序列:x(n+1)=x(n)-f(x(n))/f'(x(n))。

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条