To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

File:Wiener-process-5traces.svg

From Wikipedia, the free encyclopedia

Original file(SVG file, nominally 520 × 340 pixels, file size: 168 KB)

Summary

Description
Five sampled traces of a Wiener process with diffusion σ=1. Standard deviation ±1σX area in gray.
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(5)

ntraces = 5
a = 0. # starting value of X
sigma = 1. # diffusion
D = sigma**2 / 2 # diffusion constant
t = np.linspace(0, 3, 1001)
dt = t[1:] - t[:-1]

fig = plt.figure(figsize=(520 / 90.0, 340 / 90.0), dpi=72)
sigma0 = sigma * np.sqrt(t)
plt.fill_between(t, a - sigma0, a + sigma0, color='#dddddd')

for itrace in range(ntraces):
    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]
    
    plt.plot(t, X, lw=1)

plt.grid(True)
plt.xlim(t[0], t[-1])
plt.ylim(-4, 4)
plt.xlabel('t')
plt.ylabel('X')
plt.tight_layout()
plt.savefig('Wiener-process-5traces.svg')

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
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

5 sampled traces of a Wiener process

Items portrayed in this file

depicts

26 November 2022

image/svg+xml

File history

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

Date/TimeThumbnailDimensionsUserComment
current15:01, 26 November 2022Thumbnail for version as of 15:01, 26 November 2022520 × 340 (168 KB)Geek3Uploaded own work with UploadWizard
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Metadata

Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.