Prototypes | |
| def | lal.utils.series.func_factory (operation, dtype) |
| Returns the LAL function to perform the given operation for the relevant data type. More... | |
| def | lal.utils.series.get_struct_name (series) |
| Format a structure name into the understood type for LAL. More... | |
| def | lal.utils.series.get_series_type (series) |
| Find the LAL type enum for this series. More... | |
| def | lal.utils.series.get_lal_type_str (datatype) |
Return the LAL type str for the given datatype More... | |
| def | lal.utils.series.get_lal_type (datatype) |
Return the LAL type enum for the given datatype More... | |
| def | lal.utils.series.get_numpy_type (datatype) |
Return the numpy type for the given datatype More... | |
| def | lal.utils.series.duplicate (series) |
| Duplicate a TimeSeries or FrequencySeries. More... | |
Go to the source code of this file.
Namespaces | |
| namespace | lal |
| namespace | lal.utils |
| namespace | lal.utils.series |
Variables | |
| dictionary | lal.utils.series.LAL_TYPE_STR |
| lal.utils.series.LAL_TYPE_FROM_STR = dict((v, k) for k, v in LAL_TYPE_STR.items()) | |
| lal.utils.series.LAL_TYPE_STR_REGEX | |
| dictionary | lal.utils.series.LAL_TYPE_FROM_NUMPY |
| lal.utils.series.NUMPY_TYPE_FROM_LAL = dict((v, k) for k, v in LAL_TYPE_FROM_NUMPY.items()) | |
| list | lal.utils.series.SERIES_OPERATIONS = ['create', 'destroy', 'cut', 'resize', 'shrink', 'add'] |
| list | lal.utils.series.SERIES_TYPES = ['Time', 'Frequency'] |
| list | lal.utils.series.STRUCT_TYPES = ['Sequence', 'Vector'] |
| lal.utils.series.SERIES_REGEX | |
| lal.utils.series.ARRAY_REGEX | |
| lal.utils.series.STRUCT_REGEX | |