当前位置: 首页>>代码示例>>Python>>正文


Python Lightcurve.analyze_lc_chunks方法代码示例

本文整理汇总了Python中stingray.Lightcurve.analyze_lc_chunks方法的典型用法代码示例。如果您正苦于以下问题:Python Lightcurve.analyze_lc_chunks方法的具体用法?Python Lightcurve.analyze_lc_chunks怎么用?Python Lightcurve.analyze_lc_chunks使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在stingray.Lightcurve的用法示例。


在下文中一共展示了Lightcurve.analyze_lc_chunks方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_analyze_lc_chunks

# 需要导入模块: from stingray import Lightcurve [as 别名]
# 或者: from stingray.Lightcurve import analyze_lc_chunks [as 别名]
    def test_analyze_lc_chunks(self):
        lc = Lightcurve(self.times, self.counts, gti=self.gti)

        def func(lc):
            return lc.time[0]
        start, stop, res = lc.analyze_lc_chunks(2, func)
        assert start[0] == 0.5
        assert np.all(start + lc.dt / 2 == res)
开发者ID:abigailStev,项目名称:stingray,代码行数:10,代码来源:test_lightcurve.py

示例2: test_analyze_lc_chunks_fvar_fracstep

# 需要导入模块: from stingray import Lightcurve [as 别名]
# 或者: from stingray.Lightcurve import analyze_lc_chunks [as 别名]
    def test_analyze_lc_chunks_fvar_fracstep(self):
        dt = 0.1
        tstart = 0
        tstop = 100
        times = np.arange(tstart, tstop, dt)
        gti = np.array([[tstart - dt/2, tstop - dt/2]])
        # Simulate something *clearly* non-constant
        counts = np.random.poisson(
            10000 + 2000 * np.sin(2 * np.pi * times))

        lc = Lightcurve(times, counts, gti=gti)

        def excvar(lc):
            from stingray.utils import excess_variance
            return excess_variance(lc, normalization='fvar')

        start, stop, res = lc.analyze_lc_chunks(20, excvar, fraction_step=0.5)
        # excess_variance returns fvar and fvar_err
        res, res_err = res

        assert np.allclose(start[0], gti[0, 0])
        assert np.all(res > 0)
        # This must be a clear measurement of fvar
        assert np.all(res > res_err)
开发者ID:pabell,项目名称:stingray,代码行数:26,代码来源:test_lightcurve.py


注:本文中的stingray.Lightcurve.analyze_lc_chunks方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。