Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我实现了这个 m 文件:
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
在 Inner_loop.mdl 中,如果我想使用 G 实现/建模传递函数块,如何轻松实现?换句话说,如何轻松检索 tf 的分子和分母?
提前致谢。
这是通过调用 tfdata() 函数来完成的,对于假设为 num 的分子数据,需要在 Simulink 模型中的传递函数块的数据字段中指定 num{1}。