Revision 8a33608196672dc1c7ed9005c9b2a1a5c79731d1 authored by Alex Nitz on 19 May 2017, 12:18:12 UTC, committed by Collin Capano on 19 May 2017, 12:18:12 UTC
* Update pool.py

@spxiwh Thanks. We had caught this before, but somehow forgot to commit the patch. I think it ended up in a long term branch of Collins.

* Update pool.py
1 parent 55ce65b
Raw File
psd.rst
###################################################
Handling PSDs
###################################################

=====================================
Reading / Saving a PSD from a file
=====================================

If you have a PSD in a two column, space separated, (frequency strain), you can
load this into PyCBC.

.. plot:: ../examples/psd/read.py
   :include-source:

==============================================
Generating an Analytic PSD from lalsimulation
==============================================

A certain number of PSDs are built into lalsimulation, which you'll be able
to access through PyCBC. Below we show how to see which ones are available, 
and demonstrate how to generate one.

.. plot:: ../examples/psd/analytic.py
   :include-source:

====================================
Estimating the PSD of a time series
====================================

.. plot:: ../examples/psd/estimate.py
   :include-source:

back to top