我正在用這個八度代碼求解微分方程。wolfram alpha和octave下不同的常微分方程圖
# Define the right-hand side of the equation:
xvall= -11 ;#xvall
xvalu= 10 ;#xvalu
range=5000;
function ret=f(x,t);ret= t ;end;
# ywill be the values of the function at these moments of time.
t=linspace(xvall,xvalu,range);
y=lsode ('f', 2, linspace(xvall,xvalu,range));
y
plot(t,y);
我得到了這樣的圖。
但是當同樣的條件傳遞給Wolfram Alpha的 我收到來自60圖中爲0的y值
圖是 爲什麼在兩種情況下表現不同的圖形。 https://www.wolframalpha.com/input/?i=Runge-Kutta+method%2C+dy%2Fdx+%3D+x%2C+y%280%29+%3D+2%2C+from+-11+to+10%2C+h+%3D+0.25
謝謝德米特里丘巴羅夫 – smraj