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
d4babb8e
Commit
d4babb8e
authored
Sep 14, 2017
by
Martin Reinecke
Browse files
small performance tweak
parent
87793f67
Pipeline
#18191
passed with stage
in 6 minutes and 27 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
nifty2go/library/wiener_filter/wiener_filter_curvature.py
View file @
d4babb8e
...
...
@@ -49,5 +49,6 @@ class WienerFilterCurvature(InvertibleOperatorMixin, EndomorphicOperator):
# ---Added properties and methods---
def
_times
(
self
,
x
,
spaces
):
return
(
self
.
R
.
adjoint_times
(
self
.
N
.
inverse_times
(
self
.
R
(
x
)))
+
self
.
S
.
inverse_times
(
x
))
res
=
self
.
R
.
adjoint_times
(
self
.
N
.
inverse_times
(
self
.
R
(
x
)))
res
+=
self
.
S
.
inverse_times
(
x
)
return
res
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