Help needed adding features to this script.

조회 수: 1 (최근 30일)
Joseph Lee
Joseph Lee 2020년 5월 24일
댓글: Joseph Lee 2020년 5월 25일
I have a script (shown below) that will generate a 12x12 matrix of all 0's and a single 1, which will replicate in a randomised order 7200 times. There are three features I want to add to this script but don't know how:
  1. Instead of generating a matrix in a complete random order I want digits to move either one place up, down, left or right from their position in the previous matrix.
  2. A shortcut that will create an imagesc() for all 7200 matrix's (like the image below).
Any help would be greatly appreciated.
Thanks,
Joe
count=0;
m=zeros(144,1);
rand_int=datasample(1:144,1);
m(rand_int)=1;
old_matrix=reshape(m,[12 12]);
for i=1:7200
m=zeros(144,1);
rand_int=datasample(1:144,1);
m(rand_int)=1;
new_matrix=reshape(m,[12 12]);
if sum(abs(old_matrix-new_matrix),'All')>0
count=count+1;
end
old_matrix=new_matrix
end

채택된 답변

Image Analyst
Image Analyst 2020년 5월 24일
Here is one way:
m = zeros(12, 12);
numIterations = 7200;
row = ones(1, numIterations);
col = ones(1, numIterations);
m(row(1), col(1)) = 1;
imagesc(m);
axis('on', 'image');
for k = 2 : numIterations
row(k) = row(k-1) + randi([-1,1], 1);
while row(k) <= 0 || row(k) > size(m, 1)
row(k) = row(k-1) + randi([-1,1], 1);
end
col(k) = col(k-1) + randi([-1,1], 1);
while col(k) <= 0 || col(k) > size(m, 2)
col(k) = col(k-1) + randi([-1,1], 1);
end
m(row(k), col(k)) = 1; % Set new location
m(row(k-1), col(k-1)) = 0; % Clear old location
imagesc(m);
drawnow;
end
  댓글 수: 9
Image Analyst
Image Analyst 2020년 5월 24일
Sorry, try this (actually tested this time):
m = zeros(12, 12);
numIterations = 7200;
row = ones(1, numIterations);
col = ones(1, numIterations);
m(row(1), col(1)) = 1;
imagesc(m);
axis('on', 'image');
percentage = 0.20; % 20% of time will be the same
for k = 2 : numIterations
if rand(1) < percentage
% 20% of the time it will stay in the same place.
row(k) = row(k-1);
col(k) = col(k-1);
else
% 80% of the time it will select a new place.
% First get a tentative new location.
row(k) = row(k-1) + randi([-1,1], 1);
col(k) = col(k-1) + randi([-1,1], 1);
while row(k) == row(k-1) && col(k) == col(k-1) || row(k) <= 0 || row(k) > size(m, 1) || col(k) <= 0 || col(k) > size(m, 2)
% Get a new location.
row(k) = row(k-1) + randi([-1,1], 1);
col(k) = col(k-1) + randi([-1,1], 1);
while row(k) <= 0 || row(k) > size(m, 1)
row(k) = row(k-1) + randi([-1,1], 1);
end
while col(k) <= 0 || col(k) > size(m, 2)
col(k) = col(k-1) + randi([-1,1], 1);
end
end
end
m(row(k-1), col(k-1)) = 0; % Clear old location
m(row(k), col(k)) = 1; % Set new location
imagesc(m);
grid on;
caption = sprintf('At Iteration %d, Row = %d, Column = %d', k, row(k), col(k));
title(caption, 'FontSize', 15);
drawnow;
% pause(0.4)
end
Joseph Lee
Joseph Lee 2020년 5월 25일
Great thanks for your help.
Could you tell me how to assign colors to the numbers. white for zero, red for one? Is this possible to do using Colormaps?

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by