搜索资源列表

  1. rk4

    0下载:
  2. 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是步长。 %
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1337
    • 提供者:王志波
  1. RK4-AB4-AM4

    0下载:
  2. 该文件中包含有常微分方程初值问题的四种数值解法,分别是:RK4法,AB4法,AB4_AM4预测矫*和改进的AB4_AM4法
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:2219
    • 提供者:潘晓惠
  1. solution-of-Differential-equation-group

    0下载:
  2. 提供了4种解常微分方程组的c++代码:定步长四阶龙格-库塔(Runge-Kutta)法(RK4->RKDUMP); 自适应变步长的龙格-库塔(Runge-Kutta)法(RKQC->ODEINT); 改进的中点法(MMID); 外推法(BSSTEP(RZEXTR(有理函数), PZEXTR(多项式));-provide four kinds of solutions of ordinary differential equa
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-17
    • 文件大小:5120
    • 提供者:ldg
  1. rk4

    0下载:
  2. 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是步长。 %
  3. 所属分类:Windows编程

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:王志波
  1. step-RK4

    0下载:
  2. 四阶RK方法计算单波方程,偏微分方程数值解,Fortran编写。-Fourth-order RK method, single wave equation, numerical solution of partial differential equations, Fortran prepared.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:吴俊宏
  1. RK4-AB4-AM4

    0下载:
  2. 该文件中包含有常微分方程初值问题的四种数值解法,分别是: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
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-17
    • 文件大小:2048
    • 提供者:潘晓惠
  1. rk4

    0下载:
  2. 龙哥库塔4阶函数的计算,也可以改改变成3,2,n阶的。-龙哥Kutta 4th order function calculation can also be changed into 3,2, n bands.
  3. 所属分类:文件格式

    • 发布日期:2024-05-17
    • 文件大小:3072
    • 提供者:宝宝
  1. RK4

    0下载:
  2. 龙格库塔法解二阶方程的数值计算代码. 分别套用两次龙格库塔法解-Runge-Kutta method of numerical solution of second-order equation of the code. Were applied to two solutions of Runge-Kutta method
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-17
    • 文件大小:2999296
    • 提供者:李想
  1. rk4

    1下载:
  2. 龙格库塔四阶方法,matlab编程,仅供参考-Runge-Kutta fourth-order method, matlab programming, reference
  3. 所属分类:matlab例程

    • 发布日期:2024-05-17
    • 文件大小:20480
    • 提供者:江冬
  1. rk4

    0下载:
  2. 四阶龙格库塔算法解微分方程,给出初始值,设定步长,解出运动方程。-fourth order runge-kutta method for differential equations.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:程序员
  1. ak4ab4ab4-am4

    0下载:
  2. rk4计算方法,ab 4-am4计算方法,这些为数值计算方法中的常用的几种计算多为方程组的方法-rk4 method, ab4 method, ab4-am4 calculation method such as numerical calculations in several commonly used methods are mostly equations
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-17
    • 文件大小:264192
    • 提供者:徐继克
  1. RK4

    0下载:
  2. 基于JAVA的三维图像特征提取采用RK4解微分方程部分代码-JAVA-based three-dimensional image feature extraction using RK4 for solving differential equations part of the code
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-17
    • 文件大小:4096
    • 提供者:梁宇翔
  1. RK4

    0下载:
  2. 1.用四阶 Runge-Kutta 法求数值积分的函数为 RK4 2.此函数的入口参数为:系统维数 dimension,仿真时间 tspan 。 3.tspan 的格式为 [a:h:b] . 其中 a 表示起始时间,h 表示步长,b 表示终止时间。 4.仿真模型的状态方程、输出方程的系数矩阵以及系统初值均存放于文件 input information.txt 中。 5.仿真结果存放于文件 result.txt 中。
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:闫兆敏
  1. RK4

    1下载:
  2. RK4演算法,可用於解決線性及非線性微分方程-RK4 algorithm can be used to solve linear and non-linear differential equations
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:張仁宗
  1. RK4

    0下载:
  2. RK4通用程序,可以求解一般的数值微分的问题,RK4通用程序-RK4 General Procedure
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:王志贺
  1. RK4

    0下载:
  2. 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
  3. 所属分类:教育/学校应用

    • 发布日期:2024-05-17
    • 文件大小:17408
    • 提供者:Habeeb
  1. Pid-Rk4

    0下载:
  2. 自己做的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
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:王华
  1. rk4-for-one

    0下载:
  2. 用RK4(四阶龙格库塔法)的方法求的一阶导数方程组的解,程序比较简单,且精确-With RK4 (fourth-order Runge-Kutta method) method for solving the first-order derivative equations, the program is relatively simple and accurate
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-17
    • 文件大小:6144
    • 提供者:袁玉勋
  1. RK4

    0下载:
  2. The code solve ODE using RK4, include results.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-17
    • 文件大小:24576
    • 提供者:esenaj
  1. Runge Kutta From Dukkipati Book

    0下载:
  2. This program is base on RK4.
  3. 所属分类:matlab例程

    • 发布日期:2024-05-17
    • 文件大小:5120
    • 提供者:Ubeyd
« 12 3 4 5 »

源码中国 www.ymcn.org