gpt4 book ai didi

Python-生成特定自相关的数组

转载 作者:行者123 更新时间:2023-12-01 22:41:40 26 4
gpt4 key购买 nike

我有兴趣生成一个长度为 N 的数组(或 numpy 系列),它将在滞后 1 处表现出特定的自相关性。理想情况下,我还想指定均值和方差,并从(多)中提取数据正态分布。但最重要的是,我想指定自相关。如何使用 numpy 或 scikit-learn 执行此操作?

为了明确和精确,这是我想要控制的自相关:

numpy.corrcoef(x[0:len(x) - 1], x[1:])[0][1]

最佳答案

如果您只对滞后一处的自相关感兴趣,则可以生成 auto-regressive process一阶,参数等于所需的自相关; Wikipedia page 中提到了此属性,但证明这一点并不难。

这里是一些示例代码:

import numpy as np

def sample_signal(n_samples, corr, mu=0, sigma=1):
assert 0 < corr < 1, "Auto-correlation must be between 0 and 1"

# Find out the offset `c` and the std of the white noise `sigma_e`
# that produce a signal with the desired mean and variance.
# See https://en.wikipedia.org/wiki/Autoregressive_model
# under section "Example: An AR(1) process".
c = mu * (1 - corr)
sigma_e = np.sqrt((sigma ** 2) * (1 - corr ** 2))

# Sample the auto-regressive process.
signal = [c + np.random.normal(0, sigma_e)]
for _ in range(1, n_samples):
signal.append(c + corr * signal[-1] + np.random.normal(0, sigma_e))

return np.array(signal)

def compute_corr_lag_1(signal):
return np.corrcoef(signal[:-1], signal[1:])[0][1]

# Examples.
print(compute_corr_lag_1(sample_signal(5000, 0.5)))
print(np.mean(sample_signal(5000, 0.5, mu=2)))
print(np.std(sample_signal(5000, 0.5, sigma=3)))

参数corr可让您在滞后一处设置所需的自相关,可选参数musigma可让您控制生成信号的平均值和标准偏差。

关于Python-生成特定自相关的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33898665/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com