本文整理汇总了Python中pycbc.types.array.Array._getslice方法的典型用法代码示例。如果您正苦于以下问题:Python Array._getslice方法的具体用法?Python Array._getslice怎么用?Python Array._getslice使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pycbc.types.array.Array
的用法示例。
在下文中一共展示了Array._getslice方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _getslice
# 需要导入模块: from pycbc.types.array import Array [as 别名]
# 或者: from pycbc.types.array.Array import _getslice [as 别名]
def _getslice(self, index):
if index.step is not None:
new_delta_f = self._delta_f * index.step
else:
new_delta_f = self._delta_f
return FrequencySeries(Array._getslice(self, index),
delta_f=new_delta_f,
epoch=self._epoch,
copy=False)
示例2: _getslice
# 需要导入模块: from pycbc.types.array import Array [as 别名]
# 或者: from pycbc.types.array.Array import _getslice [as 别名]
def _getslice(self, index):
# Set the new epoch---note that index.start may also be None
if self._epoch is None:
new_epoch = None
elif index.start is None:
new_epoch = self._epoch
else:
if index.start < 0:
raise ValueError('Negative start index not supported')
new_epoch = self._epoch + index.start * self._delta_t
if index.step is not None:
new_delta_t = self._delta_t * index.step
else:
new_delta_t = self._delta_t
return TimeSeries(Array._getslice(self, index), new_delta_t,
new_epoch, copy=False)