File:OrnsteinUhlenbeckProcess2D.svg
From Wikimedia Commons, the free media repository
Jump to navigation
Jump to search
Size of this PNG preview of this SVG file: 720 × 540 pixels. Other resolutions: 320 × 240 pixels | 640 × 480 pixels | 1,024 × 768 pixels | 1,280 × 960 pixels | 2,560 × 1,920 pixels.
Original file (SVG file, nominally 720 × 540 pixels, file size: 3.97 MB)
File information
Structured data
Captions
Summary
[edit]DescriptionOrnsteinUhlenbeckProcess2D.svg |
English: 2D Ornstein-Uhlenbeck process with time step of .0001, while theta = 1.0 and sigma = 300. The initial position is (10, 10). Finally the point wanders around the central point (0, 0). |
Date | |
Source | Own work |
Author | Shiyu Ji |
Python/Matplotlib Code
[edit]# A simulation of 2D Ornstein-Uhlenbeck process with time step dt = .0001
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)
ax.set_xlabel('X')
ax.set_ylabel('Y')
x, y = 10.0, 10.0
ux, uy = 0.0, 0.0
theta = 1.0
sigma = 300.0
np.random.seed(1)
for t in T:
new_x = x + theta*(ux-x)*dt + sigma * np.random.normal(0, dt)
new_y = y + theta*(uy-y)*dt + sigma * np.random.normal(0, dt)
ax.plot([x, new_x], [y, new_y], 'b-', linewidth=0.5)
x, y = new_x, new_y
pl.show()
Licensing
[edit]I, the copyright holder of this work, hereby publish it under the following license:
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.
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 11:24, 11 November 2016 | 720 × 540 (3.97 MB) | Shiyu Ji (talk | contribs) | User created page with UploadWizard |
You cannot overwrite this file.
File usage on Commons
There are no pages that use this file.
File usage on other wikis
The following other wikis use this file:
- Usage on fa.wikipedia.org
- Usage on fr.wikipedia.org
- Usage on mk.wikipedia.org
- Usage on pt.wikipedia.org
- Usage on sr.wikipedia.org
- Usage on zh.wikipedia.org
Metadata
This file contains additional information such as Exif metadata which may have been added by the digital camera, scanner, or software program used to create or digitize it. If the file has been modified from its original state, some details such as the timestamp may not fully reflect those of the original file. The timestamp is only as accurate as the clock in the camera, and it may be completely wrong.
Width | 576pt |
---|---|
Height | 432pt |
Hidden categories: