Hi,
How would you go by generating a 1D walk from a starting position of y = 0 and that takes a step of either +1 or -1 with equal probability when N = 1000?

 Respuesta aceptada

KSSV
KSSV el 15 de Mayo de 2020
Editada: KSSV el 15 de Mayo de 2020

0 votos

N = 1000 ;
W = [-1 1] ;
RW = zeros(N,1) ;
RW(1) = W(randperm(2,1)) ;
for i = 2:N
RW(i) = RW(i-1)+W(randperm(2,1)) ;
end
plot(RW)

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Productos

Versión

R2020a

Etiquetas

Preguntada:

el 15 de Mayo de 2020

Comentada:

el 15 de Mayo de 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by