% % pendulum_jac.m % % This MATLAB function computes the Jacobian of the vector field % defined in pendulum_vf.m. % % This file was generated by the program VFGEN (Version:2.4.0) % Generated on 16-Jul-2008 at 20:17 % % function jac_ = pendulum_jac(t,x_,p_) Pi = pi; theta = x_(1); v = x_(2); g = p_(1); b = p_(2); L = p_(3); m = p_(4); jac_ = zeros(2,2); jac_(1,2) = 1; jac_(2,1) = -g*L^(-1)*cos(theta); jac_(2,2) = -m^(-1)*L^(-2)*b;