Solve System of Transfer Functions symbolic
2 次查看(过去 30 天)
显示 更早的评论
The following system of transfer functions is given:
Does a function exists in Matlab wich solve such system for and delivers the answer: ?
0 个评论
采纳的回答
Ananya Tewari
2021-3-23
I understand that you want to solve the above given system for Y(z). Using syms to create symbolic variables would help to get the desired result.
syms V(z) X(z) Y(z)
V(z) = X(z^2);
Y(z) = V(z^2)
The output for the following code is:
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!