-
Notifications
You must be signed in to change notification settings - Fork 440
Documentation update #476
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation update #476
Conversation
control/statefbk.py
Outdated
@@ -373,9 +374,9 @@ def lqr(*args, **keywords): | |||
|
|||
Returns | |||
------- | |||
K: 2D array | |||
K: 2D array (or matrix) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
numpydoc:
K: 2D array (or matrix) | |
K : 2D array (or matrix) |
Same for all the other functions in this file, which are a mix of numpydoc and non-numpydoc right now.
control/statefbk.py
Outdated
Notes | ||
----- | ||
The return type for `K` and `S` depends on the default class set for | ||
state space operations. By default, this is the Numpy `matrix` | ||
class in this release, but this can be reconfigured using the | ||
:func:`~control.use_numpy_matrix` function. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is also true for most of the other functions in this file. Maybe a general note referenced here and in those functions would be preferable. Cf. #439
…c style fixes + PEP8
This PR has a number of small documentation updates the I collected over time. All minor.