Day 24: Normal

Day 24: Normal#

Merry Christmas!, Simulated Paths $X_t, t \in [t_0, T]$, $X_T$
# Author: Dialid Santiago <d.santiago@outlook.com>
# License: MIT
# Description: Advent Calendar 2023

import matplotlib.pyplot as plt
from aleatory.processes import BrownianMotion

plt.style.use("https://raw.githubusercontent.com/quantgirluk/matplotlib-stylesheets/main/quant-pastel-light.mplstyle")

process = BrownianMotion(T=10)
fig = process.draw(n=200, N=200, envelope=True, colormap="Greens",
                   title="Merry Christmas!", figsize=(10, 7))

# fig.savefig('24_Normal_Bonus')
plt.show()

Total running time of the script: (0 minutes 1.633 seconds)

Gallery generated by Sphinx-Gallery