File:ItoProcess1D.svg

Page contents not supported in other languages.
This is a file from the Wikimedia Commons
From Wikipedia, the free encyclopedia

Original file(SVG file, nominally 768 × 576 pixels, file size: 785 KB)

Summary

Description
English: Ito process with sigma as a Ricker wavelet.
Date
Source Own work
Author Shiyu Ji
SVG development
InfoField
 
The source code of this large SVG is valid.
 
This oversized vector image was created with an unknown SVG tool.

Python/Matplotlib Code

# A simulation of 1D Ito process with time step dt = .0001
# mu is zero. sigma is a Ricker wavelet.
import matplotlib.pyplot as pl
import numpy as np

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

x = 0.0
mu = 0.0
# Ito Integral
np.random.seed(1)

def Ricker(t):
    return 2.0/(np.sqrt(3)*(np.pi**.25))*(1-t*t)*np.exp(-0.5*t*t)

for t in T:
    sigma = Ricker(t-t_final/2.0)
    new_x = x + mu*dt + sigma * np.random.normal(0, dt)
    ax.plot([t, t+dt], [x, new_x], 'b-', linewidth=0.5)
    x = new_x

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

11 November 2016

image/svg+xml

File history

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

Date/TimeThumbnailDimensionsUserComment
current22:58, 29 May 2022Thumbnail for version as of 22:58, 29 May 2022768 × 576 (785 KB)SemperVincoReduce size by making plot a single path
03:57, 12 November 2016Thumbnail for version as of 03:57, 12 November 2016720 × 540 (19.76 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:

Metadata