Constructing a Maze with vectors

조회 수: 11 (최근 30일)
slowlearner
slowlearner 2020년 9월 10일
댓글: John D'Errico 2020년 9월 12일
first off I might have bin looking in the wrong places so if you have something i can deep dive in to i'd appriciate it!
To the problem: I have a maze i created that looks like the picture
i simply set the the values as follow:
%% this is the blue
x = [20 100 100 20];
y = [80 80 100 100];
%% this is the red
x1 = [65 65 100 100];
y2 = [60 20 20 80];
%% this is the yellow
x2 = [0 0 100 20 20];
y2 = [100 0 0 0 60];
%i then just use simple plotting method
plot(x,y)
hold on
plot(x1,y1)
plot(x2,y2)
axis([-20 120 -20 120])
Now this works fine and I can see that it is a maze and sure I could make it more intricate, however when I then tried to combine every x in to one big X in to a single vector it became like this picture
it seems that the end of vector x,y became coupled with the start of x1,y1 and the end of that vector with the start of x2,y2.
I couldn't really find any rules on this... was thinking if maby addning the conecting vectors to another plot and making them white but that's to.... sad? or if maby LineStyle, 'none' could be applied in anyway?
appriciate the input.

채택된 답변

John D'Errico
John D'Errico 2020년 9월 10일
Insert NaNs between eack block of lines.
X = [x,nan,x1,nan,x2];
Y = [y,nan,y1,nan,y2];
Now the various sets of line segments will not be connected by spurious lines.
  댓글 수: 2
slowlearner
slowlearner 2020년 9월 11일
편집: slowlearner 2020년 9월 12일
king! thanks man didnt really know NaNs cNould be used a vector like that.
John D'Errico
John D'Errico 2020년 9월 12일
Yes, it is one of those tricks you just need to know to solve this problem, but would not be at all obvious. NaNs are something you normally want to avoid. I'm happy to be of help.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by