Problem 1636. ZigZag matrix with reflected format

ZigZag MATRIX with REFLECTED format.

We have only input x. We have to create a matrix in the following pattern.

 input n=5; 

then

     2     4     6     8    10
     1     3     5     7     9
     1     3     5     7     9
     2     4     6     8    10

Hint: meshgrid(1:n,1:n) & (2*i)-mod(j,n-1)+1

Solution Stats

54.62% Correct | 45.38% Incorrect
Last Solution submitted on Mar 27, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers223

Problem Tags

Community Treasure Hunt

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

Start Hunting!