Given n, construct a matrix as shown in the example below.
Example
For n=8, the output should look like this:
1 2 3 4 0 0 0 0 1 2 3 4 0 0 0 0 1 2 3 4 0 0 0 0 1 2 3 4 0 0 0 0 0 0 0 0 4 3 2 1 0 0 0 0 4 3 2 1 0 0 0 0 4 3 2 1 0 0 0 0 4 3 2 1
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers275
Suggested Problems
-
Project Euler: Problem 2, Sum of even Fibonacci
2847 Solvers
-
1536 Solvers
-
Rotate input square matrix 90 degrees CCW without rot90
685 Solvers
-
565 Solvers
-
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
1981 Solvers
More from this Author21
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Is n necessarily even?