所以我們嘗試解決簡單的ODE。我們使用文字book (warning - russian)。在本書中爲樣本這是代碼(第18頁):Maple ODE求解,圖形不完整。爲什麼?
> with(DEtools); with(plots);
> eq1 := diff(x(t), t) = y(t); eq2 := diff(y(t), t) = -sin(x(t));
> init := [[x(0) = 1, y(0) = 0], [x(0) = 0, y(0) = 2]];
> DEplot([eq1, eq2], [x, y], t = 0 .. 110, x = -2*Pi .. 2*Pi, init, scene = [x, y], stepsize = 0.5e-1, obsrange = true, color = black, linecolour = black, arrows = 'MEDIUM')
此代碼應提請:
但楓輸出這對我來說:
1)爲什麼只爲解決功能四分之一?
2)如何使它看起來像書中的樣子?
好想法。還要考慮像[x(0)= 0,y(0)= 2-0.001]和[x(0)= 0,y(0)= 2-0.000001]等IC。您還可以查看場景[t ,x]或[t,y],看看IC上的細微變化會發生什麼。 – acer