필터 지우기
필터 지우기

Moving in an Array, Relative Location/Origin

조회 수: 2 (최근 30일)
Jack Zhang
Jack Zhang 2015년 6월 16일
댓글: Star Strider 2015년 6월 16일
Hello:
I am dealing with arrays that starts off at a location (x,y) on a grid (array) and then moving one space either to the left, right, up, or down. Then, I want to move again using the new coordinate (say, (xo,yo)), so it serves as the new origin. This is similar to doing Monte Carlo simulation. How can I do this using loops under I hit the axes? Thank you.

답변 (1개)

Star Strider
Star Strider 2015년 6월 16일
I’m not sure what you want to do, but it seems like a random walk. This should get you started, and you may need to experiment with it to get the result you want:
N = 100; % Size Of Matrix
A = randi(10, N, N); % Create Matrix
X0 = randi(N); % Initial Origin
Y0 = randi(N);
[Ar,Ac] = size(A); % Determine Limits
k1 = 1; % Counter
XY(k1,:) = randi(N, 1, 3); % Initial
while ((X0 > 1) && (X0 < Ac)) && ((Y0 > 1) && (Y0 < Ar))
X0 = X0 + (-1)^randi(2); % New ‘X0’
Y0 = Y0 + (-1)^randi(2); % New ‘Y0’
XY(k1,:) = [X0,Y0,A(X0,Y0)]; % Record Moves & ‘A’ Values
k1 = k1 + 1;
end
figure(1)
plot(XY(:,1), XY(:,2))
grid
axis([1 N 1 N])
  댓글 수: 2
Jack Zhang
Jack Zhang 2015년 6월 16일
Yes, it is essentially a random walk.
Star Strider
Star Strider 2015년 6월 16일
Did you run my code?
Does it do what you want it to?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by