Problem 2177. Rainbow matrix

Create a "rainbow matrix" as described in the following examples

 Input = 3
 Output = [ 1 2 3
            2 3 2 
            3 2 1 ]
 Input = 5
 Output = [ 1 2 3 4 5
            2 3 4 5 4
            3 4 5 4 3
            4 5 4 3 2
            5 4 3 2 1 ]

Solution Stats

47.0% Correct | 53.0% Incorrect
Last Solution submitted on Apr 21, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers165

Problem Tags

Community Treasure Hunt

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

Start Hunting!