由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Mathematics版 - 小推广的Runge-Kutta方法正确吗?
相关主题
获得诺贝尔奖的好机会!How to define a coproduct of
天堂的原始本能是一个一元三次代数方程吗?Is an Algebraic Cubic Equation the Primitive Instinct beyond Electromagnetic and[转载] Help on a mathematics problem!
请帮忙翻译成英文:星系“雪花”映照下的新人类文明what's the genus of cos(sqrt(z))?
自然界的真实面目,完美地被发现了!Help On functional derivative
天堂美乳和天堂微积分a question
一篇论文终于被一个主流物理杂志接收了(该杂志跟张益唐的杂志比较,差太远了)a question..thanks for help
微分、积分的推广问大家一个小程序 (转载)
论文中重复了前人已经证明了的结果一个概率题
相关话题的讨论汇总
话题: sl2话题: goe1话题: goe3话题: goe2话题: fabs
进入Mathematics版参与讨论
1 (共1页)
t**********m
发帖数: 205
1
同学们:
有一个数学问题请教:“Runge–Kutta methods”
可以参考wikipedia:
http://en.wikipedia.org/wiki/Runge%E2%80%93Kutta_methods
其中有一句话“Now pick a step-size h>0 and define”
事实上,星系的曲线是可以绕圈的,所以上面的h>0 有时必须h小于0.
我的程序是这样处理有时大于零,有时小于零(下面是程序)。我的处理正确吗?
k1=tan(alp); dec=sin(alp);
if( cos(alp)>=0 ){goe1=fabs(goe1);}else{goe1=-fabs(goe1);}
xh=X+0.5*goe1; yh=Y+0.5*goe1*k1;
sl2=x1v(xh,yh,dec);
k2=tan(sl2); dec=sin(sl2);
if( cos(sl2)>=0 ){goe2=fabs(goe2);}else{goe2=-fabs(goe2);}
xh=X+0.5*goe2; yh=Y+0.5*goe2*k2;
sl2=x1v(xh,yh,dec);
k3=tan(sl2); dec=sin(sl2);
if( cos(sl2)>=0 ){goe3=fabs(goe3);}else{goe3=-fabs(goe3);}
xh=X+goe3; yh=Y+goe3*k3;
sl2=x1v(xh,yh,dec);
k4=tan(sl2); dec=sin(sl2);
if( cos(sl2)>=0 ){goe4=fabs(goe4);}else{goe4=-fabs(goe4);}
Xp=X+(1./6.)*(goe1+2*goe2+2*goe3+goe4);
Yp=Y+(1./6.)*(goe1*k1+2*goe2*k2+2*goe3*k3+goe4*k4);
alp=x1v(Xp,Yp,dec);
其中的goe1等等就是上述的h
请帮忙证明是否正确。谢谢!!
1 (共1页)
进入Mathematics版参与讨论
相关主题
一个概率题天堂美乳和天堂微积分
请教一个问题一篇论文终于被一个主流物理杂志接收了(该杂志跟张益唐的杂志比较,差太远了)
弱问,等号上面加个三角形是不是表示“定义为”?微分、积分的推广
A question论文中重复了前人已经证明了的结果
获得诺贝尔奖的好机会!How to define a coproduct of
天堂的原始本能是一个一元三次代数方程吗?Is an Algebraic Cubic Equation the Primitive Instinct beyond Electromagnetic and[转载] Help on a mathematics problem!
请帮忙翻译成英文:星系“雪花”映照下的新人类文明what's the genus of cos(sqrt(z))?
自然界的真实面目,完美地被发现了!Help On functional derivative
相关话题的讨论汇总
话题: sl2话题: goe1话题: goe3话题: goe2话题: fabs