File:Wigner Semi Circle Law (3000x3000 Gaussian Matrix).JPG

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Wigner_Semi_Circle_Law_(3000x3000_Gaussian_Matrix).JPG(501 × 276 pixels, file size: 20 KB, MIME type: image/jpeg)

Captions

Captions

Add a one-line explanation of what this file represents

Summary[edit]

Description
English: Wigner's semi-circle law (N=3000) created by GNU Octave

The code is normalized to :
The real graph is very flat semi-circle due to 2π factor without this normalization.

Octave code

sc(3000,64);

function sc(n,d)
# Wigner semicircle law
# p(x) = 1/(2*pi) x sqrt(4-x^2)
# 
X=randn(n,n);
M=(X+transpose(X))/sqrt(2);
E=eig(full(M));
#--------------------------------
# number of histgram = d
# histgram: delta    = 4/d
#--------------------------------
[y,x]=hist(E,d);
#----------------------
# Normalization
# x : 1/sqrt(n)
# y : 2*pi/(n*4/d)
#----------------------
nx=1/sqrt(n);
ny=2*3.1415*d/(4*n);
bar(x*nx,y*ny,"facecolor","b");
axis([-2.5,2.5,0,2.5],"equal");
end
Date
Source Own work
Author にょろん

Licensing[edit]

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 3.0 Unported 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/TimeThumbnailDimensionsUserComment
current22:09, 6 March 2013Thumbnail for version as of 22:09, 6 March 2013501 × 276 (20 KB)にょろん (talk | contribs)Changed axis interval and number of histgrams
21:10, 6 March 2013Thumbnail for version as of 21:10, 6 March 2013501 × 295 (17 KB)にょろん (talk | contribs)Normalized to fit <math> \sqrt{4-x^2} </math>
09:23, 5 March 2013Thumbnail for version as of 09:23, 5 March 2013566 × 422 (39 KB)にょろん (talk | contribs)User created page with UploadWizard

There are no pages that use this file.

File usage on other wikis

The following other wikis use this file: