由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Wisconsin版 - Re: who knows Newton's and EM method
相关主题
如何计算sqrtRe: analytic solution for an ODE...
[合集] another interview question请教怎么实现sqrt?
[转载] 问一个MS Word 有关caption和cross reference的问题求sqrt的binary算法,多谢
一个简单的数学问题,我和我老板争论不停,其中一定有一个人是Calculate Sqr()
欢迎提出任何数学问题F一题:double sqrt如何优化
求教数学问题help!
求一道中学数学题的解法ALE 和 Level-Set Method
会解2nd order ODE的也进来版上有做Numerical methods的吗?
相关话题的讨论汇总
话题: x0话题: x1话题: em话题: example话题: newton
进入Wisconsin版参与讨论
1 (共1页)
B****e
发帖数: 441
1
1. example of NP
find sqrt(5)
let f(x) = x^2 - 5
eqation of np x(n+1) = x(n) - f[x(n)] / f'[x(n)]
in our case x(n+1) = x(n) - [x(n)^2 - 5] / [2 * x(n)]
an ugly example R code
x0 <- 2
x1 <- x0 - (x0^2 - 5) / 2 / x0
while (abs(x1 - x0) > 0.001) {
x0 <- x1
x1 <- x0 - (x0^2 - 5) / 2 / x0
}
x1
2. example of EM
similar step
find the equation
coding the equation(need to use a loop)
get the results
1 (共1页)
进入Wisconsin版参与讨论
相关主题
版上有做Numerical methods的吗?欢迎提出任何数学问题
这个为什么是newton method求教数学问题
Help: Newton Method求一道中学数学题的解法
看到这个,觉得挺有意思的会解2nd order ODE的也进来
如何计算sqrtRe: analytic solution for an ODE...
[合集] another interview question请教怎么实现sqrt?
[转载] 问一个MS Word 有关caption和cross reference的问题求sqrt的binary算法,多谢
一个简单的数学问题,我和我老板争论不停,其中一定有一个人是Calculate Sqr()
相关话题的讨论汇总
话题: x0话题: x1话题: em话题: example话题: newton