Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GstLAL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
GstLAL
Commits
5bda0282
Commit
5bda0282
authored
6 years ago
by
Kipp Cannon
Committed by
Kipp Cannon
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
reference_psd: word-wrap comments
parent
ed094c27
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal/python/reference_psd.py
+20
-17
20 additions, 17 deletions
gstlal/python/reference_psd.py
with
20 additions
and
17 deletions
gstlal/python/reference_psd.py
+
20
−
17
View file @
5bda0282
...
...
@@ -486,7 +486,8 @@ class PSDFirKernel(object):
data
*=
sample_rate
#
# Change Nyquist frequency if requested
# change Nyquist frequency if requested. round to nearest
# available bin
#
if
nyquist
is
not
None
:
...
...
@@ -495,8 +496,8 @@ class PSDFirKernel(object):
data
=
data
[:
int
(
nyquist
/
psd
.
deltaF
)
+
1
]
#
# compute the FIR kernel. it always has an odd number of
samples
# and no DC offset.
# compute the FIR kernel. it always has an odd number of
#
samples
and no DC offset.
#
data
[
0
]
=
data
[
-
1
]
=
0.0
...
...
@@ -561,16 +562,18 @@ class PSDFirKernel(object):
def
linear_phase_fir_kernel_to_minimum_phase_whitening_fir_kernel
(
self
,
linear_phase_kernel
,
sample_rate
):
"""
Compute the minimum-phase response filter (zero latency) associated with a
linear-phase response filter (latency equal to half the filter length).
From
"
Design of Optimal Minimum-Phase Digital FIR Filters Using
Discrete Hilbert Transforms
"
, IEEE Trans. Signal Processing, vol. 48,
pp. 1491-1495, May 2000.
The return value is the tuple (kernel, phase response). The kernel is
a numpy array containing the filter kernel. The kernel can be used,
for example, with gstreamer
'
s stock audiofirfilter element.
Compute the minimum-phase response filter (zero latency)
associated with a linear-phase response filter (latency
equal to half the filter length).
From
"
Design of Optimal Minimum-Phase Digital FIR Filters
Using Discrete Hilbert Transforms
"
, IEEE Trans. Signal
Processing, vol. 48, pp. 1491-1495, May 2000.
The return value is the tuple (kernel, phase response).
The kernel is a numpy array containing the filter kernel.
The kernel can be used, for example, with gstreamer
'
s stock
audiofirfilter element.
"""
#
# compute abs of FFT of kernel
...
...
@@ -645,8 +648,8 @@ class PSDFirKernel(object):
absX
.
data
.
data
[:]
=
numpy
.
roll
(
abs
(
absX
.
data
.
data
),
-
working_length
//
2
+
1
)
*
sample_rate
#
# compute the cepstrum of the kernel
#
(i.e., the iFFT of the
log of the abs of the FFT of the kernel)
# compute the cepstrum of the kernel
(i.e., the iFFT of the
# log of the abs of the FFT of the kernel)
#
logabsX
.
data
.
data
[:]
=
numpy
.
roll
(
numpy
.
log
(
absX
.
data
.
data
),
+
working_length
//
2
+
1
)
...
...
@@ -680,8 +683,8 @@ class PSDFirKernel(object):
kernel
=
min_phase_kernel
.
data
.
data
.
real
#
# this kernel needs to be reversed to follow conventions
used with the
# audiofirfilter and lal_firbank elements
# this kernel needs to be reversed to follow conventions
#
used with the
audiofirfilter and lal_firbank elements
#
kernel
=
kernel
[
-
1
::
-
1
]
...
...
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