White Noise#

Simulate and visualise paths

# Author: Dialid Santiago <d.santiago@outlook.com>
# License: MIT
# Description: Simulate and visualise White Noise

from aleatory.processes import WhiteNoise

process = WhiteNoise(sigma=1.0, T=1.0)
fig = process.plot_paths_and_kernel(n=100, N=5, matrix_shape=True)
fig.show()
White Noise ($\sigma$=1.00), Simulated Paths, Kernel
process = WhiteNoise(sigma=1.0, T=1.0)
fig = process.draw(n=200, N=200, figsize=(12, 7), dpi=150)
fig.show()
White Noise ($\sigma$=1.00), Monte Carlo Simulated Paths $\{{X_t, t \in [t_0, T]\}}$, $X_T$ Marginal
process = WhiteNoise(sigma=1.0, T=1.0)
fig = process.plot(n=200, N=10, figsize=(12, 7), dpi=250)
fig.show()
White Noise ($\sigma$=1.00)

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

Gallery generated by Sphinx-Gallery