Skip to content

Commit 8fc3627

Browse files
committed
update _convertToStateSpace to _convert_to_statespace
1 parent 7122b07 commit 8fc3627

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

control/canonical.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from .exception import ControlNotImplemented, ControlSlycot
55
from .lti import issiso
6-
from .statesp import StateSpace, _convertToStateSpace
6+
from .statesp import StateSpace, _convert_to_statespace
77
from .statefbk import ctrb, obsv
88

99
import numpy as np
@@ -444,7 +444,7 @@ def modal_form(xsys, condmax=None, sort=False):
444444
else:
445445
bd_sort = None
446446

447-
xsys = _convertToStateSpace(xsys)
447+
xsys = _convert_to_statespace(xsys)
448448
amodal, tmodal, _ = bdschur(xsys.A, condmax=condmax, sort=bd_sort)
449449

450450
return similarity_transform(xsys, tmodal, inverse=True), tmodal

0 commit comments

Comments
 (0)