Гауссова сумма с питоном - PullRequest
0 голосов
/ 30 декабря 2018

Я нашел этот код:

import numpy as np
import matplotlib.pyplot as plt

# We create 1000 realizations with 200 steps each
n_stories = 1000
t_max = 500

t = np.arange(t_max)
# Steps can be -1 or 1 (note that randint excludes the upper limit)
steps = 2 * np.random.randint(0, 1 + 1, (n_stories, t_max)) - 1

# The time evolution of the position is obtained by successively
# summing up individual steps. This is done for each of the
# realizations, i.e. along axis 1.
positions = np.cumsum(steps, axis=1)

# Determine the time evolution of the mean square distance.
sq_distance = positions**2
mean_sq_distance = np.mean(sq_distance, axis=0)

# Plot the distance d from the origin as a function of time and
# compare with the theoretically expected result where d(t)
# grows as a square root of time t.
plt.figure(figsize=(10, 7))
plt.plot(t, np.sqrt(mean_sq_distance), 'g.', t, np.sqrt(t), 'y-')
plt.xlabel(r"$t$")
plt.tight_layout()
plt.show()

Вместо того, чтобы делать только шаги -1 или 1, я хотел бы делать шаги, следуя стандартному нормальному распределению ... когда я вставляю np.random.normal(0,1,1000) вместо np.random.randint (...) он не работает.

Я действительно новичок в Python, кстати.

Большое спасибо заранее и добрыеС уважением

1 Ответ

0 голосов
/ 30 декабря 2018

Вы вводите одно число в качестве третьего параметра np.random.normal, поэтому вы получаете массив 1d вместо 2d, см. Документацию .Попробуйте это:

steps = np.random.normal(0, 1, (n_stories, t_max))
...