필터 지우기
필터 지우기

Set of SISO transfer functions to MIMO transfer function

조회 수: 6 (최근 30일)
Jilan Samiuddin
Jilan Samiuddin 2019년 2월 13일
답변: Dhanashree Mohite 2019년 2월 27일
I have a set of transfer functions showing individual interactions between two inputs and two outputs of a MIMO system - in other words, I have SISO equations showing interactions between the controlled variables and the manipulated variables. As an example:
Now I want to have the overall system equation of the MIMO system. How do I do that? Intuitively, I think the MIMO system equation should be and, .
However, I am little confused. Thanks for your help in advance.
  댓글 수: 2
Dhanashree Mohite
Dhanashree Mohite 2019년 2월 26일
Does it mean, how to get MIMO Transfer function using multiple SISO Transfer function in MATLAB?
Jilan Samiuddin
Jilan Samiuddin 2019년 2월 26일
Yes, that is what I mean. Provided the 4 SISO transfer functions for 2-inputs-2-outputs system, I want the MIMO transfer function.

댓글을 달려면 로그인하십시오.

답변 (1개)

Dhanashree Mohite
Dhanashree Mohite 2019년 2월 27일
As you want to create Transfer function model in MATLAB, you can use ‘tf’ function.
For your case it will be:
Numerator = {1,2 ; 50,300};
Denominator = {[10 1],[16 1] ; [300 30 1], [20 1]};
H = tf(Numerator,Denominator,'InputName',{'u1' 'u2'},...
'OutputName',{'y1' 'y2'},...
'Variable','s');
Please refer below link for more understanding:
https://www.mathworks.com/help/control/ref/tf.html?s_tid=doc_ta

카테고리

Help CenterFile Exchange에서 Get Started with Control System Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by