Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
NIFTy
Commits
f9a99dca
Commit
f9a99dca
authored
Jan 21, 2019
by
Martin Reinecke
Browse files
more adjustments
parent
1e396765
Changes
1
Hide whitespace changes
Inline
Side-by-side
nifty5/library/dynamic_operator.py
View file @
f9a99dca
...
...
@@ -43,7 +43,8 @@ def _make_dynamic_operator(target,
causal
,
minimum_phase
,
sigc
=
None
,
quant
=
None
):
quant
=
None
,
codomain
=
None
):
if
not
isinstance
(
target
,
RGSpace
):
raise
TypeError
(
"RGSpace required"
)
if
not
target
.
harmonic
:
...
...
@@ -64,7 +65,9 @@ def _make_dynamic_operator(target,
if
cone
and
(
sigc
is
None
or
quant
is
None
):
raise
RuntimeError
dom
=
DomainTuple
.
make
(
target
.
get_default_codomain
())
if
codomain
is
None
:
codomain
=
target
.
get_default_codomain
()
dom
=
DomainTuple
.
make
(
codomain
)
ops
=
{}
FFT
=
FFTOperator
(
dom
)
Real
=
Realizer
(
dom
)
...
...
Write
Preview
Markdown
is supported
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