How to create a complex transfer function?
显示 更早的评论
There is a transfer function I want to write in my script but when I attempt to do so, it gives me an error with the following message: "Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters." Here is the code I used to attempt to make the transfer function
Code:
% `1. Write the transfer function in matlab
s = tf('s');
G = 5(1+0.1s)/(s(1+0.5s)(1+(0.6/50)s+(1/50^2)s^2);
My question is how do you create the transfer function as shown in the screenshot?
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Get Started with Control System Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
