one dimensional random walk model MATLAB code??
이전 댓글 표시
A drunk man's random walk in one dimension
댓글 수: 3
Chris McComb
2015년 4월 16일
Many people will be happy to help you with specific MATLAB related questions, but its unreasonable to ask for a full solution to what sounds like a homework question.
xosro
2015년 4월 18일
hi i am not sure this code is what you want.|
if true
y=0;
i=1;
while 1>0
a=sign(randn);
y(i+1)=y(i)+a;
pause(.00005);
plot(y)
i=i+1;
end
end
James Tursa
2015년 4월 18일
How often does he take a step? When does he go to sleep? What was he drinking?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!