help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

ode23


From: mochzeen
Subject: ode23
Date: Wed, 5 Dec 2018 02:47:48 -0600 (CST)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]