带有时滞项的微积分方程组,有没有大神看一下?

3519℃ ELBERT

带有时滞项的微积分方程组,有没有大神看一下?

高数微分方程 有大神知道这个公式求特解吗?

很简单,2λ+p=0,λ^2+pλ+q=0

所以,条件变成:Q''(x)=2

积分两次得到:Q(x)=x^2

∴  特解为:y*=x^2·e^(x/2)

如何用matlab求解时滞偏微分方程组

这是matlab中dde23的例子,通过这个例子,应该能看懂dde23个参数的作用.直接复制后边的代码就可以输出图形. %DDEX1 Example 1 for DDE23. % This is a simple example of Wille' and Baker that illustrates the % straightforward formulation,computation,and plotting of the solution % of a system of delay differential equations (DDEs). % % The differential equations % % y'_1(t) = y_1(t-1) % y'_2(t) = y_1(t-1)+y_2(t-0.2) % y'_3(t) = y_2(t) % % are solved on [0,5] with history y_1(t) = 1,y_2(t) = 1,y_3(t) = 1 for % t

那位大虾,快来救命啊。知不知道如何用MATLAB解带时滞的方程组并画图

用DDE23求解就可以了。具体怎么调用可以去MATLAB的帮助中找个例子。