由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Science版 - 4-阶龙格库塔子程序
相关主题
Re: 谁有fast Fourire transform的子程序)Re: Where is Matrix Inverse subroutine? Thx.
Re: which science tools are better?请教一个数学问题
Re: 请教一个人口增长的问题(数学软件)Re: 介绍一个计算复宗量Bessel函数的程序吧
请教一个解多体dynamics的问题Re: help about autocorrelation.
Re: question about MATLABRe: 问个数学问题
Re: 求救Re: multiple regression model's question
请教,怎么生成高斯分布的随机变量?Re: 请教一个问题
Fortran badRe: 概率问题
相关话题的讨论汇总
话题: nmax话题: nstpmx话题: nstep话题: nvar话题: x1
进入Science版参与讨论
1 (共1页)
s***e
发帖数: 911
1
SUBROUTINE rkdumb(vstart,nvar,x1,x2,nstep,derivs)
INTEGER nstep,nvar,NMAX,NSTPMX
PARAMETER (NMAX=50,NSTPMX=200)
REAL x1,x2,vstart(nvar),xx(NSTPMX),y(NMAX,NSTPMX)
EXTERNAL derivs
COMMON /path/ xx,y
CU USES rk4
INTEGER i,k
REAL h,x,dv(NMAX),v(NMAX)
do 11 i=1,nvar
v(i)=vstart(i)
y(i,1)=v(i)
11 continue
xx(1)=x1
x=x1
h=(x2-x1)/nstep
do 13 k=1,nstep
call derivs(x,v,dv)
call rk4(v,dv,nva
j**n
发帖数: 20
2
go to www.nr.com....
they have electronic form of Numerical Recipes...and codes written in
both C and Fortran is available....
but the pages are all in pdf format... so you will need to either buy the
source code from the publisher or use some tools to extract the codes from
the pdf files.
1 (共1页)
进入Science版参与讨论
相关主题
Re: 概率问题Re: question about MATLAB
Someone mind to explain the argument in the postRe: 求救
Re: 请教一个线性最小二乘拟合的基本问题,谢谢!请教,怎么生成高斯分布的随机变量?
让我头痛死了的问题Fortran bad
Re: 谁有fast Fourire transform的子程序)Re: Where is Matrix Inverse subroutine? Thx.
Re: which science tools are better?请教一个数学问题
Re: 请教一个人口增长的问题(数学软件)Re: 介绍一个计算复宗量Bessel函数的程序吧
请教一个解多体dynamics的问题Re: help about autocorrelation.
相关话题的讨论汇总
话题: nmax话题: nstpmx话题: nstep话题: nvar话题: x1