![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/559157/image.png)
Solve System of Transfer Functions symbolic
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MB
le 3 Fév 2021
Réponse apportée : Ananya Tewari
le 23 Mar 2021
The following system of transfer functions is given:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/508647/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/508652/image.png)
Does a function exists in Matlab wich solve such system for
and delivers the answer:
?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/508657/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/508662/image.png)
0 commentaires
Réponse acceptée
Ananya Tewari
le 23 Mar 2021
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:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/559157/image.png)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!