Problem 1211. Create an 'arrow-head" matrix

Write a function that when given an odd number, produces an arrow-head function pointing to the right.

Examples

n = 3

output

         [1  0
          0  1
          1  0]

n = 5

output

                [ 1   0   0
                  0   1   0
                  0   0   1  
                  0   1   0
                  1   0   0]             

Solution Stats

58.96% Correct | 41.04% Incorrect
Last Solution submitted on Dec 09, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers133

Suggested Problems

More from this Author11

Problem Tags

Community Treasure Hunt

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

Start Hunting!