Actually, it has to be like this for any value of R specified, diagonals are X-es, the rest is dots. I got in a really simple way.
Info
This question is closed. Reopen it to edit or answer.
Drawing something simple with MATLAB
1 view (last 30 days)
Show older comments
I need to write a code to produce the following pattern:
X...X
.X.X.
..X..
.X.X.
X...X
can anyone please help me with the code?
1 Comment
Answers (3)
Ajay Kumar
on 27 Oct 2011
disp(' ')
disp('X...X')
disp('.X.X.')
disp('..X..')
disp('.X.X.')
disp('X...X')
disp(' ')
0 Comments
Ajay Kumar
on 27 Oct 2011
Try the above. It should work. This is the simplest if you are just trying to display characters
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!