mochzeen
2018-12-05 08:47:48 UTC
Hi,
I have installed the latest Octave 4.4.1 which includes ode23. When I tried
my old ode example code which worked previously, it gave me an error of
error: structure has no member 'OutputSave'
error: called from
ode23 at line 166 column 3
My code is vdpol.m
trange=[0 0.5];
x0=[1;0];
ode23(@myproblemm,trange,x0)
with myproblemm.m
function dxdt=myproblemm(t,x)
dx1dt=x(2);
dx2dt=5-3*x(2)-x(1);
dxdt=[dx1dt; dx2dt];
I Googled the error message but no luck. Please help.
--
Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html
I have installed the latest Octave 4.4.1 which includes ode23. When I tried
my old ode example code which worked previously, it gave me an error of
error: structure has no member 'OutputSave'
error: called from
ode23 at line 166 column 3
My code is vdpol.m
trange=[0 0.5];
x0=[1;0];
ode23(@myproblemm,trange,x0)
with myproblemm.m
function dxdt=myproblemm(t,x)
dx1dt=x(2);
dx2dt=5-3*x(2)-x(1);
dxdt=[dx1dt; dx2dt];
I Googled the error message but no luck. Please help.
--
Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html