File:WienerProcess3D.svg

Summary

Description
English: SVG version of
Date
Source Own work
Author Shiyu Ji

Python/Matplotlib Code

# A simulation of Wiener process with time step dt = .0001
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as pl
import numpy as np

t0 = 0.0
dt = 0.0001
t_final = 2
T = np.arange(t0, t_final, dt)
ax = pl.figure().add_subplot(111, projection='3d')
ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')

x, y, z = 0.0, 0.0, 0.0
np.random.seed(1)
for t in T:
    new_x = x + np.random.normal(0, dt)
    new_y = y + np.random.normal(0, dt)
    new_z = z + np.random.normal(0, dt)
    ax.plot([x, new_x], [y, new_y], [z, new_z], 'b-', linewidth=0.5)
    x, y, z = new_x, new_y, new_z

pl.show()

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-4.0#WienerProcess3D.svg
Category:Self-published work Category:Wiener process Category:Created with Matplotlib code Category:3D plots
Category:3D plots Category:CC-BY-SA-4.0 Category:Created with Matplotlib code Category:Pages using deprecated source tags Category:Self-published work Category:Wiener process