• Welcome!
  • Blogs

Matrix, Control and Robotics

Matrix, Control and Robotics

Category Archives: MATLAB

Implementation of time delay to transfer function in MATLAB

29 Wednesday Apr 2015

Posted by junkailu in MATLAB

≈ Leave a comment

Tags

blog

Take the implementation of \dfrac{s+1}{s^2+s+1}\cdot e^{-s} as an example:

Approach I:

s=tf('s');
g1 = (s+1)/(s^2+s+1);
g2 = exp(-s);
g = g1*g2

Approach II:

g=tf([1 1],[1 1 1],'ioDelay',1);

Both the above two approaches give the following result:

Transfer function:
               s + 1
exp(-1*s) * -----------
            s^2 + s + 1

Categories

  • Hardware
  • Kalman Filter
  • LaTeX
  • Linear Systems
  • MATLAB
  • Robotics
  • Statistics

Blog at WordPress.com.

  • Subscribe Subscribed
    • Matrix, Control and Robotics
    • Already have a WordPress.com account? Log in now.
    • Matrix, Control and Robotics
    • Subscribe Subscribed
    • Sign up
    • Log in
    • Report this content
    • View site in Reader
    • Manage subscriptions
    • Collapse this bar