How can I represent a multiple input and single output (MISO) transfer function in MATLAB

조회 수: 53 (최근 30일)
An example is a tf model of the form y(t)=(0.3s-10)/(s^2+21.8s+60) u_1 (t) + (0.8s+72.3)/(s^2+21.8s+60) u_2 (t). y(t) is the system output while u_1 (t) and u_2 (t) are both system inputs.

채택된 답변

Sachin Kumar
Sachin Kumar 2017년 3월 7일
You can create your model as below:
Numerator = {[0.3 -1] [0.8 72.3]}; %Numerators of u_1 and u_2
Denominator = {[1 21.8 60] [1 21.8 60]}; %Denominators of u_1 and u_2
H = tf(Numerator,Denominator); %creates a transfer function
  댓글 수: 3
Uvais Qidwai
Uvais Qidwai 2020년 6월 4일
i think you can (a) have as many transfer functions as the outputs or (b) build a MIMO state space model

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by