Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
resolve
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ift
resolve
Commits
b44daa9f
Commit
b44daa9f
authored
3 years ago
by
Philipp Arras
Browse files
Options
Downloads
Patches
Plain Diff
Adjust docstring
parent
347b9832
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!29
Allow frequency domain to be defined on log scale
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
resolve/response.py
+5
-3
5 additions, 3 deletions
resolve/response.py
with
5 additions
and
3 deletions
resolve/response.py
+
5
−
3
View file @
b44daa9f
...
@@ -106,12 +106,14 @@ class MfResponse(ift.LinearOperator):
...
@@ -106,12 +106,14 @@ class MfResponse(ift.LinearOperator):
observation : Observation
observation : Observation
Instance of the :class:`Observation` that represents the measured data.
Instance of the :class:`Observation` that represents the measured data.
frequency_domain : IRGSpace
frequency_domain : IRGSpace
Contains the :class:`IRGSpace` for the frequencies.
Contains the :class:`IRGSpace` for the frequencies. The coordinates of
the space can be either frequencies or normalized log-frequencies. In
the latter case set `log_freq` to True.
position_domain : nifty8.RGSpace
position_domain : nifty8.RGSpace
Contains the the :class:`nifty8.RGSpace` for the positions.
Contains the the :class:`nifty8.RGSpace` for the positions.
log_freq : bool
log_freq : bool
Set to
true
if
the coordinates
in the
frequency
domain are
normalized by the mean frequency and in log-scale.
If
true
,
the coordinates
of `
frequency
_
domain
`
are
interpreted to be
Default is False.
normalized log-frequencies.
Default is False.
"""
"""
def
__init__
(
self
,
observation
,
frequency_domain
,
position_domain
,
log_freq
=
False
):
def
__init__
(
self
,
observation
,
frequency_domain
,
position_domain
,
log_freq
=
False
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment