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
Replace NaNs with the number that appears to its left in the row.
1710 Solvers
134 Solvers
Sum of diagonal of a square matrix
1159 Solvers
533 Solvers
Rounding off numbers to n decimals
281 Solvers
Problem Tags