Note
Go to the end to download the full example code.
Day 15 : Chi#
![Bessel process $BES^{3}_{0}$, Simulated Paths $X_t, t \in [t_0, T]$, $X_T$](../_images/sphx_glr_plot_advent_15_Chi_Bonus_001.png)
# Author: Dialid Santiago <d.santiago@outlook.com>
# License: MIT
# Description: Advent Calendar 2023
from aleatory.processes import BESProcess
bes = BESProcess(dim=3, initial=0)
mystyle = "https://raw.githubusercontent.com/quantgirluk/matplotlib-stylesheets/main/quant-pastel-light.mplstyle"
fig = bes.draw(n=100, N=200, style=mystyle, colormap="PRGn",
orientation='horizontal', figsize=(12, 6))
# fig.savefig("15_Chi_Bonus")
Total running time of the script: (0 minutes 3.900 seconds)