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

其他行业

开发平台:

Matlab

  1. function xdot = state(t,x);   % returns the state derivatives
  2. A = [0  1  0; 0  0  1; -6  -11  -6];
  3. B=[1; 1; 1];
  4. xdot = A*x'+ B*sin(2*pi*t);
  5. %xdot = A*x';