Random walk
Applies to: general, python, finance, physics
A random walk evolves by adding random steps over time, a simple model for diffusion and stochastic paths.
x = np.cumsum(steps)
See also: monte-carlo
Applies to: general, python, finance, physics
A random walk evolves by adding random steps over time, a simple model for diffusion and stochastic paths.
x = np.cumsum(steps)
See also: monte-carlo