项目作者: auralius

项目描述 :
The asymptotic Bode plots in MATLAB
高级语言: MATLAB
项目地址: git://github.com/auralius/bodas.git
创建时间: 2019-04-25T14:01:53Z
项目社区:https://github.com/auralius/bodas

开源协议:

下载


bodas

The asymptotic bode diagram in MATLAB

Ex.1 with real poles/zeros

  1. s = tf('s');
  2. G = -100*s / (s^3 + 12*s^2 + 21*s + 10)
  3. [G, w] = bodas(G);

[G, w] = bodas(G);
Screenshot

Screenshot

Ex2. with complex conjugate poles/zeros

  1. s = tf('s');
  2. G = (-s^2-0.2*s-4.01) / s
  3. [G, w] = bodas(G);

Screenshot

Screenshot

How to use

Please read: bodas-manual.pdf

References

MIT OCW — Dynamics and Control II — Lecture 33
https://lpsa.swarthmore.edu/Bode/BodeHow.html