Skip to content

MIMO Transfer Function #561

Answered by murrayrm
CtrlAlt-Delete asked this question in Q&A
Discussion options

You must be logged in to vote

@ilayn beat me to it, but here is a bit more detail.

As you have it written, the meaning is ambiguous: are you trying to create a 2-input, 1-output system or a 1-input, 2-output system?

For 2-input, 1-output, use

H = control.tf([[ [1], [2] ]], [[ [1, 2], [3, 4] ]] )

For 1-input, 2-output, use

H = control.tf([ [[1]], [[2]] ], [ [[1, 2]], [[3, 4]] ])

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by bnavigator
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #557 on March 12, 2021 10:01.