24小时热门版块排行榜    

查看: 3659  |  回复: 1

huobaozi

新虫 (小有名气)

[求助] dde23求解延迟微分方程的问题

dde23求解延迟微分方程的问题
想求解这样一个延迟微分方程。
假定函数f(t)在小于TAO0的时候为0,等于tao0的时候为0.1(随意假定的一个常数)。
先实现了一个ddefun函数如下:
----------------------------------------
function v = ddefun(t,y,Z)
a=1e-4;
b=-1e-10;
ylag1 =Z;
v=a*y+b*ylag1;
---------------------------------------
然后,主函数中相关代码这样写:
tao0=100;
tspan=tao0:tao0*1000;
fm=@(x) ((x==tao0)*0.1);
sol=dde23('ddefun', tao0,fm,tspan);
——————————————————
运行没有问题,但是因为我也不知道延迟微分方程的解应该什么,所以没办法验证。求问达人,上述代码的求解过程对吗?谢谢。
回复此楼

» 猜你喜欢

» 本主题相关价值贴推荐,对您同样有帮助:

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

月只蓝

主管区长 (职业作家)

以下是MATLAB的帮助文档,你程序的格式应该没问题。
>> help dde23
DDE23  Solve delay differential equations (DDEs) with constant delays.
    SOL = DDE23(DDEFUN,LAGS,HISTORY,TSPAN) integrates a system of DDEs
    y'(t) = f(t,y(t),y(t - tau_1),...,y(t - tau_k)). The constant, positive
    delays tau_1,...,tau_k are input as the vector LAGS. DDEFUN is a function
    handle. DDEFUN(T,Y,Z) must return a column vector corresponding to
    f(t,y(t),y(t - tau_1),...,y(t - tau_k)). In the call to DDEFUN, a scalar T
    is the current t, a column vector Y approximates y(t), and a column Z(:,j)
    approximates y(t - tau_j) for delay tau_j = LAGS(J).  The DDEs are
    integrated from T0=TSPAN(1) to TF=TSPAN(end) where T0 < TF. The solution
    at t <= T0 is specified by HISTORY in one of three ways: HISTORY can be
    a function handle, where for a scalar T, HISTORY(T) returns a column
    vector y(t). If y(t) is constant, HISTORY can be this column vector.
    If this call to DDE23 continues a previous integration to T0, HISTORY
    can be the solution SOL from that call.

    DDE23 produces a solution that is continuous on [T0,TF]. The solution is
    evaluated at points TINT using the output SOL of DDE23 and the function
    DEVAL: YINT = DEVAL(SOL,TINT). The output SOL is a structure with
        SOL.x  -- mesh selected by DDE23
        SOL.y  -- approximation to y(t) at the mesh points of SOL.x
        SOL.yp -- approximation to y'(t) at the mesh points of SOL.x
        SOL.solver -- 'dde23'

    SOL = DDE23(DDEFUN,LAGS,HISTORY,TSPAN,OPTIONS) solves as above with default
    parameters replaced by values in OPTIONS, a structure created with the
    DDESET function. See DDESET for details. Commonly used options are
    scalar relative error tolerance 'RelTol' (1e-3 by default) and vector of
    absolute error tolerances 'AbsTol' (all components 1e-6 by default).

    DDE23 can solve problems with discontinuities in the solution prior to T0
    (the history) or discontinuities in coefficients of the equations at known
    values of t after T0 if the locations of these discontinuities are
    provided in a vector as the value of the 'Jumps' option.

    By default the initial value of the solution is the value returned by
    HISTORY at T0. A different initial value can be supplied as the value of
    the 'InitialY' property.

    With the 'Events' property in OPTIONS set to a function handle EVENTS,
    DDE23 solves as above while also finding where event functions
    g(t,y(t),y(t - tau_1),...,y(t - tau_k)) are zero. For each function
    you specify whether the integration is to terminate at a zero and whether
    the direction of the zero crossing matters. These are the three column
    vectors returned by EVENTS: [VALUE,ISTERMINAL,DIRECTION] = EVENTS(T,Y,Z).
    For the I-th event function: VALUE(I) is the value of the function,
    ISTERMINAL(I) = 1 if the integration is to terminate at a zero of this
    event function and 0 otherwise. DIRECTION(I) = 0 if all zeros are to
    be computed (the default), +1 if only zeros where the event function is
    increasing, and -1 if only zeros where the event function is decreasing.
    The field SOL.xe is a row vector of times at which events occur. Columns
    of SOL.ye are the corresponding solutions, and indices in vector SOL.ie
    specify which event occurred.   
   
    Example   
          sol = dde23(@ddex1de,[1, 0.2],@ddex1hist,[0, 5]);
      solves a DDE on the interval [0, 5] with lags 1 and 0.2 and delay
      differential equations computed by the function ddex1de. The history
      is evaluated for t <= 0 by the function ddex1hist. The solution is
      evaluated at 100 equally spaced points in [0 5]  
          tint = linspace(0,5);
          yint = deval(sol,tint);
      and plotted with
          plot(tint,yint);
      DDEX1 shows how this problem can be coded using subfunctions. For
      another example see DDEX2.
MATLAB、MS小问题、普通问题请发帖求助!时间精力有限,恕不接受无偿私信求助。
2楼2013-10-12 08:50:03
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 huobaozi 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[基金申请] 综述论文作为代表作会不会影响评审专家的印象分? +3 yufeiwaner 2026-08-09 3/150 2026-08-10 07:46 by gaohui8888
[基金申请] 面上项目filecode邪修 +5 西山十月 2026-08-09 7/350 2026-08-10 07:32 by 仁砚薪传
[基金申请] 应该是93bebmhtak前后十一个字符比较关键 +7 Lanmanbaby 2026-08-09 14/700 2026-08-09 23:33 by Tide man
[基金申请] 2026国自然放榜时间 +4 布布和一二 2026-08-08 4/200 2026-08-09 22:24 by otj2008
[基金申请] filecode与中标关系的预测 +5 布布和一二 2026-08-07 5/250 2026-08-09 16:15 by 袁向阳007
[基金申请] fileCode有新解读? +10 Tide man 2026-08-08 18/900 2026-08-09 12:55 by 仁砚薪传
[基金申请] 关于filecode,很负责任的告诉大家 +6 爱看书的可乐 2026-08-08 7/350 2026-08-08 22:13 by a_niu
[考博] 【2027博士申请】纳米药物递送方向 20+3 13586093586 2026-08-03 5/250 2026-08-08 21:54 by 13586093586
[基金申请] 好奇怪的filecode +3 布布和一二 2026-08-08 4/200 2026-08-08 17:46 by zhanghaozhu
[基金申请] 基金中了 +14 laoda193707 2026-08-06 14/700 2026-08-08 00:23 by 实验小白ha
[基金申请] 化学口download_prp&amp;fileCode的固定段好像这几天一直没变,有变的大神么? +3 Tide man 2026-08-07 4/200 2026-08-07 22:39 by Tide man
[基金申请] 固定端突然变了,今天 +6 archvillain 2026-08-06 10/500 2026-08-07 16:03 by 医学老男孩
[基金申请] filecode变化情况 +6 布布和一二 2026-08-07 22/1100 2026-08-07 14:45 by 且听虎啸
[基金申请] 大家散了吧,后缀研究没有意义,别浪费时间了,过好目前的每一天,不要焦虑 +5 Tide man 2026-08-06 7/350 2026-08-07 13:11 by 医学老男孩
[基金申请] filecode +14 等待解的谜 2026-08-06 19/950 2026-08-07 12:20 by wlwhappy
[基金申请] 8月时间戳变的,举个手。玩一下,释放压力 +9 archvillain 2026-08-04 11/550 2026-08-05 20:06 by wlwhappy
[基金申请] 好消息?这个有何含义??? +8 Tide man 2026-08-05 10/500 2026-08-05 16:14 by xmuxiaoyu
[基金申请] 有没有H口的?有收到消息的吗? +3 超级海虾 2026-08-04 3/150 2026-08-04 17:26 by 学教育滴
[基金申请] 纯娱乐,不喜欢勿喷 +7 Tide man 2026-08-04 10/500 2026-08-04 15:10 by loufangrui
[基金申请] 什么时候能放榜呀? +3 Jacob678 2026-08-03 3/150 2026-08-03 16:14 by gltch
信息提示
请填处理意见