We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fb1a51 commit d4525a1Copy full SHA for d4525a1
control/xferfcn.py
@@ -1287,7 +1287,8 @@ def _isstatic(self):
1287
1288
# c2d function contributed by Benjamin White, Oct 2012
1289
def _c2d_matched(sysC, Ts, **kwargs):
1290
- if sysC.ninputs > 1 or sysC.noutputs > 1:
+ if not sysC.issiso():
1291
+ raise ControlMIMONotImplemented("Not implemented for MIMO systems")
1292
raise ValueError("MIMO transfer functions not supported")
1293
1294
# Pole-zero match method of continuous to discrete time conversion
0 commit comments