搜索资源列表
rk4
- function [tout, yout] = rk4(ypfun, tspan, y0, h) %定步长四阶Runge-Kutta法求常微分方程(组)数值解 %[tout,yout] = rk4( ypfun , tspan, y0,h) % 这里字符串ypfun是用以表示f(t, y)的M文件名, % tspan=[t0, tfinal]表示自变量初值t0和终值tf % y0表示初值向量y0,h是步长。 %
RK4-AB4-AM4
- 该文件中包含有常微分方程初值问题的四种数值解法,分别是:RK4法,AB4法,AB4_AM4预测矫*和改进的AB4_AM4法
solution-of-Differential-equation-group
- 提供了4种解常微分方程组的c++代码:定步长四阶龙格-库塔(Runge-Kutta)法(RK4->RKDUMP); 自适应变步长的龙格-库塔(Runge-Kutta)法(RKQC->ODEINT); 改进的中点法(MMID); 外推法(BSSTEP(RZEXTR(有理函数), PZEXTR(多项式));-provide four kinds of solutions of ordinary differential equa
rk4
- function [tout, yout] = rk4(ypfun, tspan, y0, h) %定步长四阶Runge-Kutta法求常微分方程(组)数值解 %[tout,yout] = rk4( ypfun , tspan, y0,h) % 这里字符串ypfun是用以表示f(t, y)的M文件名, % tspan=[t0, tfinal]表示自变量初值t0和终值tf % y0表示初值向量y0,h是步长。 %
step-RK4
- 四阶RK方法计算单波方程,偏微分方程数值解,Fortran编写。-Fourth-order RK method, single wave equation, numerical solution of partial differential equations, Fortran prepared.
RK4-AB4-AM4
- 该文件中包含有常微分方程初值问题的四种数值解法,分别是:RK4法,AB4法,AB4_AM4预测矫*和改进的AB4_AM4法-The document contains the initial value problem of ordinary differential equations of the four numerical method, namely: RK4 method, AB4 Act, AB4_AM4 forecas
rk4
- 龙哥库塔4阶函数的计算,也可以改改变成3,2,n阶的。-龙哥Kutta 4th order function calculation can also be changed into 3,2, n bands.
RK4
- 龙格库塔法解二阶方程的数值计算代码. 分别套用两次龙格库塔法解-Runge-Kutta method of numerical solution of second-order equation of the code. Were applied to two solutions of Runge-Kutta method
rk4
- 龙格库塔四阶方法,matlab编程,仅供参考-Runge-Kutta fourth-order method, matlab programming, reference
rk4
- 四阶龙格库塔算法解微分方程,给出初始值,设定步长,解出运动方程。-fourth order runge-kutta method for differential equations.
ak4ab4ab4-am4
- rk4计算方法,ab 4-am4计算方法,这些为数值计算方法中的常用的几种计算多为方程组的方法-rk4 method, ab4 method, ab4-am4 calculation method such as numerical calculations in several commonly used methods are mostly equations
RK4
- 基于JAVA的三维图像特征提取采用RK4解微分方程部分代码-JAVA-based three-dimensional image feature extraction using RK4 for solving differential equations part of the code
RK4
- 1.用四阶 Runge-Kutta 法求数值积分的函数为 RK4 2.此函数的入口参数为:系统维数 dimension,仿真时间 tspan 。 3.tspan 的格式为 [a:h:b] . 其中 a 表示起始时间,h 表示步长,b 表示终止时间。 4.仿真模型的状态方程、输出方程的系数矩阵以及系统初值均存放于文件 input information.txt 中。 5.仿真结果存放于文件 result.txt 中。
RK4
- RK4演算法,可用於解決線性及非線性微分方程-RK4 algorithm can be used to solve linear and non-linear differential equations
RK4
- RK4通用程序,可以求解一般的数值微分的问题,RK4通用程序-RK4 General Procedure
RK4
- Runge-Kutta 4th-Order Java Application. It can be used to get the Butcher Table for various version of RK4. it is also useful in getting the ODE solution by using the initial conditions. It is useful in most engineering
Pid-Rk4
- 自己做的pid调节,已知输入求输出过程用的是龙格库塔发的4阶程序,对了解rk4有很大帮助-Do the PID regulation, the known input process is the output of 4 order Runge Kutta procedure development, are of great help to understand RK4
rk4-for-one
- 用RK4(四阶龙格库塔法)的方法求的一阶导数方程组的解,程序比较简单,且精确-With RK4 (fourth-order Runge-Kutta method) method for solving the first-order derivative equations, the program is relatively simple and accurate
RK4
- The code solve ODE using RK4, include results.
Runge Kutta From Dukkipati Book
- This program is base on RK4.