% % pendulum_jacp.m % % This MATLAB function computes the Jacobian with respect to the parameters % 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 jacp_ = pendulum_jacp(t,x_,p_) Pi = pi; theta = x_(1); v = x_(2); g = p_(1); b = p_(2); L = p_(3); m = p_(4); jacp_ = zeros(2,4); jacp_(2,1) = -sin(theta)*L^(-1); jacp_(2,2) = -m^(-1)*v*L^(-2); jacp_(2,3) = sin(theta)*g*L^(-2)+2*m^(-1)*v*L^(-3)*b; jacp_(2,4) = m^(-2)*v*L^(-2)*b;