Function defining a simple differential equation //dy/dt = 0.2 y t//. <code> function dydt = f0(t,y); dydt = 0.2*y(1)*t(1); end </code>