Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
LISA Instrument
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
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LISA Simulation
LISA Instrument
Commits
cae55dbf
Commit
cae55dbf
authored
3 months ago
by
Wolfgang Kastaun
Browse files
Options
Downloads
Patches
Plain Diff
Correct some module docstrings
parent
01ca9a40
No related branches found
No related tags found
No related merge requests found
Pipeline
#376919
passed
3 months ago
Stage: test
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lisainstrument/fixed_shift_dask.py
+2
-2
2 additions, 2 deletions
lisainstrument/fixed_shift_dask.py
lisainstrument/fixed_shift_numpy.py
+4
-4
4 additions, 4 deletions
lisainstrument/fixed_shift_numpy.py
with
6 additions
and
6 deletions
lisainstrument/fixed_shift_dask.py
+
2
−
2
View file @
cae55dbf
"""
Functions for applying
dynamic
real-valued shifts to dask arrays using Lagrange interpolation
"""
Functions for applying
fixed
real-valued shifts to dask arrays using Lagrange interpolation
Use make_
dynamic
_shift_lagrange_dask to create a Lagrange interpolator for dask arrays.
Use make_
fixed
_shift_lagrange_dask to create a Lagrange interpolator for dask arrays.
"""
from
__future__
import
annotations
...
...
This diff is collapsed.
Click to expand it.
lisainstrument/fixed_shift_numpy.py
+
4
−
4
View file @
cae55dbf
"""
Functions for
interpolating numpy arrays with 1D regularly spaced data
"""
Functions for
applying fixed real-valued shifts to numpy arrays using Lagrange interpolation
This provides a generic interface
RegularInterpolat
or as well as
two interpolation
methods, linear and Lagrange
. The latter is written from scratch, see module
regular_interpolator
_dsp for another one based on the dsp.timeshift Lagrange interpolator.
This provides a generic interface
FixedShiftC
or
e
as well as
an implementation using
Lagrange interpolation
. The latter is written from scratch, see module
fixed_shift
_dsp for another one based on the dsp.timeshift Lagrange interpolator.
"""
from
__future__
import
annotations
...
...
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