Tf transfer function replacement
10 次查看(过去 30 天)
显示 更早的评论
Hello, I would like to use the following function:
but I do not posses Control Toolbox so no tf and tfdata functions.
How to write this part of code without tf but to mantain functionality:
totalsys=0;
for i=1:length(G)
sys=tf(1,[C(i,1) G(i,1)]);
totalsys = totalsys + sys;
end
[num den] = tfdata(totalsys,'v');
Thanks!
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dynamic System Models 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!