Pendulum.m
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:

其他行业

开发平台:

Matlab

  1. function xdot = pendulum(t,x);   % returns the state derivatives
  2. W =2; L = .6; B = 0.02; g = 9.81;  m =W/g;
  3. xdot = [x(2) ; -B/m*x(2)-W/(m*L)*sin(x(1)) ];