Note
Go to the end to download the full example code.
Day 24: Normal#
![Merry Christmas!, Simulated Paths $X_t, t \in [t_0, T]$, $X_T$](../_images/sphx_glr_plot_advent_24_Normal_Bonus_001.png)
# 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)