Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
actually, I want gaussian probability distribution from this code so what changes can I do in my code? please suggest me.

What I have tried:

import numpy as np
import matplotlib.pyplot as plt

W = 15 # walkers

X0 = 0

T  = 1   #total time 

dt = .001 #time steps 

N  = int(T/dt) # no of time steps 

D  = 1

np.random.seed(1)

t = dt * np.arange(N)

dx = np.sqrt(2 * D * dt)*np.random.randn(N,W)

x  = np.zeros((N,W))

for w in range(W):
 for i in range(N-1):
    x[i+1][w] = x[i][w] + dx[i][w]

            
        
           
plt.plot(t, x )

plt.show()
Posted
Updated 10-Jan-23 20:02pm

1 solution

The np.random.randn call already provides an array of Gaussian distributed values, see numpy.random.randn — NumPy v1.24 Manual[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900