ODEFUN

ODEFUN

This function computes the right-hand-side of the ODE described by the DynamicalSystem object obj

function f = odefun(obj,t,z)

        f = obj.B\(obj.A * z + obj.evaluate_Fnl(z) + obj.evaluate_Fext(t,z));
end