Problem 54840. Draw a X

Given an input n , create a square matrix of zeros with an X of ones.
Ex.
n = 3
drawX(3)
[ 1 0 1
0 1 0
1 0 1 ]
Ex.
n = 7
drawX(7)
[ 1 0 0 0 0 0 1
0 1 0 0 0 1 0
0 0 1 0 1 0 0
0 0 0 1 0 0 0
0 0 1 0 1 0 0
0 1 0 0 0 1 0
1 0 0 0 0 0 1 ]

Solution Stats

85.0% Correct | 15.0% Incorrect
Last Solution submitted on Jun 27, 2024

Solution Comments

Show comments

Problem Recent Solvers32

Suggested Problems

Community Treasure Hunt

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

Start Hunting!