Archivo:Random walk in2D closeup.png

Ver la imagen en su resolución original (842 × 989 píxeles; tamaño de archivo: 29 kB; tipo MIME: image/png)

File:random walk 2500.svg es una versión vectorial de este archivo. Debería usarse esa versión en lugar de este archivo PNG, cuando sea mejor.

File:Random walk in2D closeup.png → File:random walk 2500.svg

Para más información, lee Ayuda:SVG.

En otros idiomas
Alemannisch  العربية  беларуская (тарашкевіца)  български  বাংলা  català  нохчийн  čeština  dansk  Deutsch  Ελληνικά  English  British English  Esperanto  español  eesti  euskara  فارسی  suomi  français  Frysk  galego  Alemannisch  עברית  hrvatski  magyar  հայերեն  Bahasa Indonesia  Ido  italiano  日本語  ქართული  한국어  lietuvių  македонски  മലയാളം  Bahasa Melayu  norsk bokmål  Plattdüütsch  Nederlands  norsk nynorsk  norsk  occitan  polski  prūsiskan  português  português do Brasil  română  русский  sicilianu  Scots  slovenčina  slovenščina  српски / srpski  svenska  தமிழ்  ไทย  Türkçe  татарча / tatarça  українська  vèneto  Tiếng Việt  中文  中文(中国大陆)  中文(简体)  中文(繁體)  中文(马来西亚)  中文(新加坡)  中文(臺灣)  中文(臺灣)  +/−
Nueva imagen SVG

Made by myself with MATLAB.

 
Este diagrama fue creado con MATLAB.
Public domain Yo, el titular de los derechos de autor de esta obra, lo libero al dominio público. Esto aplica en todo el mundo.
En algunos países esto puede no ser legalmente factible; si ello ocurriese:
Concedo a cualquier persona el derecho de usar este trabajo para cualquier propósito, sin ningún tipo de condición al menos que éstas sean requeridas por la ley.

Source code (MATLAB)

Note. One may need to modify the step size, the number of steps, and rerun the code to get a picture similar to the above.

 

function main()

   lw = 1;   % line width
   dx=0.05;  % step size
   L=1;      % window size
   N = 5000; % number of steps
   
   ii=sqrt(-1);
   
   AP =(1+ii)*ones(1, N);

   % do the random walk with N steps. Save the results in AP
   P=0;
   for i=1:N
      AP(i)=P;
      dP = (1+ii)*dx*(hrand+ii*hrand)/2;
      P = P+dP;
   end

   figure(2); clf; hold on; axis equal; axis off; 
   plot(real(AP), imag(AP),  'color', 'r', 'linewidth', lw);

   saveas(gcf, 'random_walk_in2D_closeup.eps', 'psc2')

  % chose randomly a number from the set {-1, 1}
function z=hrand

   z=0;
   while z==0
      z=rand(1)-0.5;
      z = sign(z);
   end

Leyendas

Añade una explicación corta acerca de lo que representa este archivo

Elementos representados en este archivo

representa a

Historial del archivo

Haz clic sobre una fecha y hora para ver el archivo tal como apareció en ese momento.

Fecha y horaMiniaturaDimensionesUsuarioComentario
actual03:39 18 abr 2007Miniatura de la versión del 03:39 18 abr 2007842 × 989 (29 kB)Oleg AlexandrovMade by myself with MATLAB. {{PD-self}} ==Source code== '''Note.''' One may need to modify the step size, the number of steps, and rerun the code to get a picture similar to the above. <pre> <nowiki> function main() lw = 1; % line width dx=0.0

La siguiente página usa este archivo:

Uso global del archivo

Las wikis siguientes utilizan este archivo: