Simulink: implementing a custom transfer function

Posted by stanigator on Stack Overflow See other posts from Stack Overflow or by stanigator
Published on 2010-03-31T03:07:03Z Indexed on 2010/03/31 3:13 UTC
Read the original article Hit count: 506

Filed under:
|

Let's say I implement this m-file:

Fq=tf(0.5^2,[1 2*0.7*0.5 0.5^2]);
G=tf(0.006*[200 1],[80 1 0]);
Q=Fq/G;

open Inner_Loop.mdl

Inside Inner_loop.mdl, if I want to implement/model a transfer function block using G, how can it be achieved easily? Thanks in advance.

© Stack Overflow or respective owner

Related posts about matlab

Related posts about simulink