Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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
Service Desk
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
bilby
Commits
5ba7bf1b
Commit
5ba7bf1b
authored
4 years ago
by
Gregory Ashton
Browse files
Options
Downloads
Patches
Plain Diff
Suppress the error message when creating injections
parent
35071349
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!938
Suppress the error message when creating injections
Pipeline
#210975
passed
4 years ago
Stage: initial
Stage: test
Stage: docs
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bilby/gw/detector/psd.py
+2
-1
2 additions, 1 deletion
bilby/gw/detector/psd.py
with
2 additions
and
1 deletion
bilby/gw/detector/psd.py
+
2
−
1
View file @
5ba7bf1b
...
...
@@ -359,7 +359,8 @@ class PowerSpectralDensity(object):
"""
white_noise
,
frequencies
=
utils
.
create_white_noise
(
sampling_frequency
,
duration
)
frequency_domain_strain
=
self
.
__power_spectral_density_interpolated
(
frequencies
)
**
0.5
*
white_noise
with
np
.
errstate
(
invalid
=
"
ignore
"
):
frequency_domain_strain
=
self
.
__power_spectral_density_interpolated
(
frequencies
)
**
0.5
*
white_noise
out_of_bounds
=
(
frequencies
<
min
(
self
.
frequency_array
))
|
(
frequencies
>
max
(
self
.
frequency_array
))
frequency_domain_strain
[
out_of_bounds
]
=
0
*
(
1
+
1j
)
return
frequency_domain_strain
,
frequencies
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