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?

 채택된 답변

KSSV
KSSV 2020년 5월 15일
편집: KSSV 2020년 5월 15일

0 개 추천

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)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품

릴리스

R2020a

질문:

2020년 5월 15일

댓글:

2020년 5월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by