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!