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内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复