function [xdot] = linear_ode_function(x, A_truth) % % Written by: % -- % John L. Weatherwax 2006-08-28 % % email: wax@alum.mit.edu % % Please send comments and especially bug reports to the % above email address. % %----- xdot = A_truth * x(:);