Problem 45830. Make a checkerboard matrix (★★★★★)
(copy of Prob. 4)
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1.
Example:
Input n = 5
Output a is [1 0 1 0 1
0 1 0 1 0
1 0 1 0 1
0 1 0 1 0
1 0 1 0 1]
Avoid using for/while loops.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers88
Suggested Problems
-
Convert a numerical matrix into a cell array of strings
2365 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
13529 Solvers
-
400 Solvers
-
Write a code that will follow the equation y = x * (x + x) * x.
355 Solvers
-
340 Solvers
More from this Author52
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!