function xdot=clode2(t,x,flag,A,I) %% Carol Lucas %% xdot=A*x+I; But shown individually as would need to be done %% for a nonlinear system %% This function is called by odenullkline.m, which is called by %% AppendA_Dem xdot(1,1)=A(1,1)*x(1)+A(1,2)*x(2)+I(1); xdot(2,1)=A(2,1)*x(1)+A(2,2)*x(2)+I(2);