Solve System of Transfer Functions symbolic

조회 수: 1 (최근 30일)
MB
MB 2021년 2월 3일
답변: Ananya Tewari 2021년 3월 23일
The following system of transfer functions is given:
Does a function exists in Matlab wich solve such system for and delivers the answer: ?

채택된 답변

Ananya Tewari
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개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by