Problem 45403. ZigZag - 03

Given a matrix of any size, print its elements from the zigzag form of the matrix.

For example,

a=[1 2 3; 
   4 5 6;
   7 8 9]
output = [1 2 3 6 5 4 7 8 9];

Solution Stats

45.1% Correct | 54.9% Incorrect
Last Solution submitted on Jan 13, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers19

Suggested Problems

More from this Author165

Community Treasure Hunt

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

Start Hunting!