Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

change u == 0 test to avoid py3.8+ syntax warning#580

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
Merged
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletionscontrol/statesp.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -1238,7 +1238,7 @@ def dcgain(self, warn_infinite=False):
"""
return self._dcgain(warn_infinite)

def dynamics(self, t, x, u=0):
def dynamics(self, t, x, u=None):
"""Compute the dynamics of the system

Given input `u` and state `x`, returns the dynamics of the state-space
Expand DownExpand Up@@ -1274,7 +1274,7 @@ def dynamics(self, t, x, u=0):
x = np.reshape(x, (-1, 1)) # force to a column in case matrix
if np.size(x) != self.nstates:
raise ValueError("len(x) must be equal to number of states")
if u is0:
if u isNone:
return self.A.dot(x).reshape((-1,)) # return as row vector
else: # received t, x, and u, ignore t
u = np.reshape(u, (-1, 1)) # force to a column in case matrix
Expand All@@ -1283,7 +1283,7 @@ def dynamics(self, t, x, u=0):
return self.A.dot(x).reshape((-1,)) \
+ self.B.dot(u).reshape((-1,)) # return as row vector

def output(self, t, x, u=0):
def output(self, t, x, u=None):
"""Compute the output of the system

Given input `u` and state `x`, returns the output `y` of the
Expand DownExpand Up@@ -1317,7 +1317,7 @@ def output(self, t, x, u=0):
if np.size(x) != self.nstates:
raise ValueError("len(x) must be equal to number of states")

if u is0:
if u isNone:
return self.C.dot(x).reshape((-1,)) # return as row vector
else: # received t, x, and u, ignore t
u = np.reshape(u, (-1, 1)) # force to a column in case matrix
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp