Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
pyMOR
pymor
Commits
a263bf4d
Commit
a263bf4d
authored
Sep 23, 2021
by
Linus
Browse files
[models.iosys] add parameter parse in get_ast_spectrum
parent
402c2fc1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/pymor/models/iosys.py
View file @
a263bf4d
...
...
@@ -1200,6 +1200,10 @@ class LTIModel(InputStateOutputModel):
rev
|VectorArray| of right eigenvectors.
"""
if
not
isinstance
(
mu
,
Mu
):
mu
=
self
.
parameters
.
parse
(
mu
)
assert
self
.
parameters
.
assert_compatible
(
mu
)
A
,
B
,
C
,
D
,
E
=
(
op
.
assemble
(
mu
=
mu
)
for
op
in
[
self
.
A
,
self
.
B
,
self
.
C
,
self
.
D
,
self
.
E
])
if
ast_pole_data
is
not
None
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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