File:Wiener-process-trace.svg

Uploaded by Geek3
Upload date 2022-11-26T15:01:27Z
MIME type image/svg+xml
Dimensions 520 × 340 px
File size 62.2 KB

Summary

Description
English: A sampled traces of a Wiener process with diffusion σ=1, D=1/2.
Date
Source Own work
Author Geek3
SVG development
InfoField
 The SVG code is valid.
 This plot was created with Matplotlib.
Source code
InfoField

Matplotlib source code

The plot was generated with Matplotlib
#! /usr/bin/env python3
# -*- coding:utf8 -*-

import matplotlib.pyplot as plt
import numpy as np
from math import *

plt.rcParams['font.sans-serif'] = 'DejaVu Sans'
np.random.seed(28)

a = 0. # starting value of X
sigma = 1. # diffusion
D = sigma**2 / 2 # diffusion constant
t = np.linspace(0, 3, 3001)

dt = t[1:] - t[:-1]
randnorm = np.random.normal(0, 1, len(t))
X = np.empty_like(t)
X[0] = a

for i in range(len(t) - 1):
    X[i+1] = X[i] + sigma * sqrt(dt[i]) * randnorm[i+1]

fig = plt.figure(figsize=(520 / 90.0, 340 / 90.0), dpi=72)
plt.plot(t, X)
plt.grid(True)
plt.xlim(t[0], t[-1])
plt.ylim(-3, 3)
plt.xlabel('t')
plt.ylabel('X')
plt.tight_layout()
plt.savefig('Wiener-process-trace.svg')

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

A sampled traces of a Wiener process

Items portrayed in this file

depicts

26 November 2022

image/svg+xml

63,644 byte

47e364fdfee66c1f69e25b43afe84b8e5caf94c7

Category:CC-BY-SA-4.0 Category:Red noise Category:Self-published work Category:Valid SVG created with Matplotlib code Category:Wiener process