noise.py 文件源码

python
阅读 27 收藏 0 点赞 0 评论 0

项目:sketchrls 作者: LCAV 项目源码 文件源码
def noise_ar1(n, rows=1, a1=0.9):

    x = noise_white(n, rows=rows)
    for row in x:
        row[:] = fftconvolve(row, np.array([1., a1]), mode='same')
    x = (x.T/np.sqrt(np.mean(x**2, axis=1))).T

    return x
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号