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

Freqplot improvements#522

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
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
23 commits
Select commitHold shift + click to select a range
bab9f7b
removed backspace character in margins plot title because it shows as…
sawyerbfullerJan 28, 2021
72c5e06
evalfr(sys,s) -> sys(s); mimo errors specified as ControlMIMONotImple…
sawyerbfullerJan 28, 2021
ddaeb6d
freqplot: use reasonable number of frequency points rather than defau…
sawyerbfullerJan 28, 2021
70c9855
convert first system passed to append into ss if necessary
sawyerbfullerJan 28, 2021
65171d3
a few small code cleanups
sawyerbfullerJan 28, 2021
060b2f0
fixes to pass tests
sawyerbfullerJan 28, 2021
151fb6c
removed backspace character in margins plot title because it shows as…
sawyerbfullerJan 28, 2021
ee6a72e
evalfr(sys,s) -> sys(s); mimo errors specified as ControlMIMONotImple…
sawyerbfullerJan 28, 2021
1c0764d
freqplot: use reasonable number of frequency points rather than defau…
sawyerbfullerJan 28, 2021
08dfca5
convert first system passed to append into ss if necessary
sawyerbfullerJan 28, 2021
d8b70ed
a few small code cleanups
sawyerbfullerJan 28, 2021
5e3c2bb
fixes to pass tests
sawyerbfullerJan 28, 2021
b9a350e
Merge branch 'freqplot-improvements' of https://github.com/sawyerbful…
sawyerbfullerJan 28, 2021
41193c6
test bug, changed is to ==
sawyerbfullerJan 28, 2021
d195e06
revert some freqplot.nyquist_plot changes because they turned out to …
sawyerbfullerJan 28, 2021
eaf5b16
docstring fixes, nyquist now outputs frequency response as specified …
sawyerbfullerJan 29, 2021
e8d233f
added a few unit tests for frequency range parameter to nyquist and bode
sawyerbfullerJan 29, 2021
fa43785
plot vertical nyquist freq line at same time as data for legend conve…
sawyerbfullerJan 29, 2021
adec95e
Update control/freqplot.py
sawyerbfullerJan 29, 2021
b7653f8
Update control/freqplot.py
sawyerbfullerJan 29, 2021
acaea54
@murrayrm suggested changes e.g change default_frequency_range to pri…
sawyerbfullerJan 29, 2021
24d57e1
Merge branch 'freqplot-improvements' of https://github.com/sawyerbful…
sawyerbfullerJan 29, 2021
73ce1a6
allow specified frequency range to exceed nyquist frequency if desired
sawyerbfullerJan 29, 2021
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
4 changes: 2 additions & 2 deletionscontrol/bdalg.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -174,7 +174,7 @@ def negate(sys):
>>> sys2 = negate(sys1) # Same as sys2 = -sys1.

"""
return -sys;
return -sys

#! TODO: expand to allow sys2 default to work in MIMO case?
def feedback(sys1, sys2=1, sign=-1):
Expand DownExpand Up@@ -280,7 +280,7 @@ def append(*sys):
>>> sys = append(sys1, sys2)

"""
s1 = sys[0]
s1 =ss._convert_to_statespace(sys[0])
for s in sys[1:]:
s1 = s1.append(s)
return s1
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp