Skip to content

Commit 9e2bc60

Browse files
committed
Update bdalg.py
1 parent fae8e6d commit 9e2bc60

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

control/bdalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def connect(sys, Q, inputv, outputv):
321321
'''
322322
# first connect
323323
K = sp.zeros( (sys.inputs, sys.outputs) )
324-
for r in sp.array(Q).astype(int):
324+
for r in np.array(Q).astype(int):
325325
inp = r[0]-1
326326
for outp in r[1:]:
327327
if outp > 0 and outp <= sys.outputs:

0 commit comments

Comments
 (0)