Revision c8d47ea718755b68fc5cad339a118734810f0554 authored by Collin Capano on 22 June 2020, 17:31:22 UTC, committed by GitHub on 22 June 2020, 17:31:22 UTC
* add generic spherical <-> cartesian transforms; deprecation warnings for spin12 transforms

* fix typo, use sphericaltocartesian in common cbc transforms

* fix typos, register transform

* update example ini file

* initialize cartesian to spherical with right arguments in test

* fix bug in inverse transform

* pep8
1 parent fdaaf42
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