File:BrownExcursion1D.svg

Original file ‎(SVG file, nominally 720 × 540 pixels, file size: 1.97 MB)

Summary

Description
English: A realization of Brown excursion process.
Date
Source Own work
Author Shiyu Ji

Python/Matplotlib Code

# A realization of 1D Brownian Excursion process time step dt = .0001

import matplotlib.pyplot as pl
import numpy as np

t0 = 0.0
dt = 0.0001
t_final = 1.0
T = np.arange(t0, t_final, dt)
ax = pl.figure().add_subplot(111)
ax.set_xlabel('t')
ax.set_ylabel('X')

np.random.seed(3)

while True:
    B = [0.0]
    for _ in range(len(T)):
        old_value = B[-1]
        new_value = old_value + np.random.normal(0, dt)
        B.append(new_value)

    W1 = B[-1]
    for i in range(len(B)):
        B[i] = B[i] - dt*i*W1
    if min(B) > -1e-14:
        break

for i in range(1,len(B)):
    ax.plot([dt*i, dt*(i-1)], [B[i], B[i-1]], 'b-', linewidth=0.5)

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.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

creator

some value

author name string: Shiyu Ji
Wikimedia username: Shiyu Ji
URL: http://commons.wikimedia.org/wiki/User:Shiyu_Ji

copyright status

copyrighted

copyright license

Creative Commons Attribution-ShareAlike 4.0 International

inception

13 November 2016

source of file

original creation by uploader

media type

image/svg+xml

checksum

89c9a4b0d93ff4b7238b4cd5b7b2153e6b47ea1c

determination method: SHA-1

data size

2,060,864 byte

height

540 pixel

width

720 pixel

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current08:55, 13 November 2016720 × 540 (1.97 MB)Shiyu JiUser created page with UploadWizard
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Global file usage

The following other wikis use this file:

  • Usage on fr.wikipedia.org
    • Excursion brownienne
  • Usage on pt.wikipedia.org
    • Usuário(a):WilsonNeuroMat/Testes35
    • Excursão browniana

Metadata

Retrieved from "https://en.wikipedia.org/wiki/File:BrownExcursion1D.svg"