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

其他行业

开发平台:

Matlab

  1. function  [a1,b1]=frcntlr(num, den, w1, a0,pm)
  2. [M, si]=bode(num,den,w1);
  3. th=-180+pm-si; thpi=th*pi/180;
  4. a1=(1-a0*M*cos(thpi))/(w1*M*sin(thpi));
  5. b1=(cos(thpi)-a0*M)/(w1*sin(thpi));
  6. [a1, b1];