Given a x-by-x matrix filled with zeros (x is odd and > 1). Use ones to draw a number 1 into it! Like this:
x = 5, y =
0 1 1 0 0
0 0 1 0 0
0 0 1 0 0
0 0 1 0 0
0 0 1 0 0
x = 7, y =
0 0 1 1 0 0 0
0 0 0 1 0 0 0
0 0 0 1 0 0 0
0 0 0 1 0 0 0
0 0 0 1 0 0 0
0 0 0 1 0 0 0
0 0 0 1 0 0 0
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers721
Suggested Problems
-
Number of 1s in a binary string
10998 Solvers
-
Permute diagonal and antidiagonal
502 Solvers
-
Convert a Cell Array into an Array
2195 Solvers
-
Matlab Basics - Convert a row vector to a column vector
678 Solvers
-
特定の値がベクトル内に含まれているかを確認するコードを書こう
341 Solvers
More from this Author12
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
x is given, but not the zeros matrix. Problem statement is actually incorrect.