Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
pyMOR
pymor
Commits
09e64f6e
Commit
09e64f6e
authored
Jan 13, 2023
by
mohamedadelnaguib
Browse files
Typo changes and remove printing statement
parent
d7113051
Changes
2
Hide whitespace changes
Inline
Side-by-side
docs/source/tutorial_lti_systems.md
View file @
09e64f6e
...
...
@@ -332,8 +332,8 @@ _ = fom.transfer_function.bode_plot(w, ax=axs)
```
In the Bode plot visualization, you can choose a specific one or more input-output pair
to display its plot by setting values for both the optional arguments
``
`input_indices`
``
and/or
``
`
output_indices
`
``
. In case you did not pass values for both of these arguments, a
to display its plot by setting values for both the optional arguments `input_indices` and/or
`output_indices`. In case you did not pass values for both of these arguments, a
plot with all possible input-output paris will be displayed.
```
{code-cell}
...
...
src/pymor/models/transfer_function.py
View file @
09e64f6e
...
...
@@ -257,7 +257,6 @@ class TransferFunction(CacheableObject, ParametricObject):
"""
num_input
=
self
.
_cal_plot_dimension
(
input_indices
,
self
.
dim_input
)
num_output
=
self
.
_cal_plot_dimension
(
output_indices
,
self
.
dim_output
)
print
(
self
.
dim_input
,
self
.
dim_output
)
if
input_indices
is
None
:
input_indices
=
list
(
range
(
self
.
dim_input
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment