ノイズの時系列データの作り方
数値検証をする場合のノイズの時系列データがしばしばベンチマークとして使われる。
pythonで時系列データを作る。
ホワイトノイズ
ガウス分布関数を利用して
sample.py
import numpy as np
import random
import matplotlib.pyplot as plt
dlen = 1024 #ノイズデータのデータ長
mean = 0.0 #ノイズの平均値
std = 1.0 #ノイズの分散
y = np.array( [random.gauss(mean, std) for i in range(dlen)] )
plt.plot(y)
plt.show()
又はnumpyのrandomを使って簡単に
sample.py
import numpy as np
import matplotlib.pyplot as plt
dlen = 1024 #ノイズデータのデータ長
mean = 0.0 #ノイズの平均値
std = 1.0 #ノイズの分散
y = np.random.normal(mean,std,dlen)
plt.plot(y)
plt.show()
Author And Source
この問題について(ノイズの時系列データの作り方), 我々は、より多くの情報をここで見つけました https://qiita.com/hayatowft/items/ecc16c08845af315c373著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .