State.m
资源名称:power.rar [点击查看]
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:
其他行业
开发平台:
Matlab
- function xdot = state(t,x); % returns the state derivatives
- A = [0 1 0; 0 0 1; -6 -11 -6];
- B=[1; 1; 1];
- xdot = A*x'+ B*sin(2*pi*t);
- %xdot = A*x';