概述
matlab 反馈函数
matlab中feedback(sys1,n)函数的作用将模型的反馈连接成n级负反馈循环。例如:
例如传递函数G和C
G = tf([2 5 1],[1 2 3],'inputname',"torque",'outputname',"velocity");
C = tf([5,10],[1,10]);
sys = feedback(G,C,-1)
sys =
From input "torque" to output "velocity":
2 s^3 + 25 s^2 + 51 s + 10
---------------------------
11 s^3 + 57 s^2 + 78 s + 40
Continuous-time transfer function.
最后
以上就是真实烤鸡为你收集整理的2020-12-03 matlab 反馈函数 feedback的全部内容,希望文章能够帮你解决2020-12-03 matlab 反馈函数 feedback所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复