Constructing a Maze with vectors
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Manage Products dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!