gstlal  1.4.1
Functions
pipeio.py File Reference

Go to the source code of this file.

Functions

def python.pipeio.repack_complex_array_to_real (arr)
 
def python.pipeio.repack_real_array_to_complex (arr)
 
def python.pipeio.get_unit_size (caps)
 
def python.pipeio.numpy_dtype_from_caps (caps)
 
def python.pipeio.format_string_from_numpy_dtype (dtype)
 
def python.pipeio.caps_from_array (arr, rate=None)
 
def python.pipeio.array_from_audio_sample (sample)
 
def python.pipeio.audio_buffer_from_array (arr, timestamp, offset, rate)
 
def python.pipeio.parse_spectrum_message (message)
 
def python.pipeio.parse_framesrc_tags (taglist)
 

Function Documentation

◆ parse_spectrum_message()

def python.pipeio.parse_spectrum_message (   message)
Parse a "spectrum" message from the lal_whiten element, return a
LAL REAL8FrequencySeries containing the strain spectral density.

Definition at line 184 of file pipeio.py.

◆ repack_complex_array_to_real()

def python.pipeio.repack_complex_array_to_real (   arr)
Repack a complex-valued array into a real-valued array with twice
as many columns.  Used to set complex arrays as values on elements
that expose them as real-valued array properties (gobject doesn't
understand complex numbers).  The return value is a view into the
input array.

Definition at line 66 of file pipeio.py.

◆ repack_real_array_to_complex()

def python.pipeio.repack_real_array_to_complex (   arr)
Repack a real-valued array into a complex-valued array with half as
many columns.  Used to retrieve complex arrays from elements that
expose them as real-valued array properties (gobject doesn't
understand complex numbers).  The return value is a view into the
input array.

Definition at line 82 of file pipeio.py.