Given a matrix, print all its elements in the spiral form (clockwise direction).
For example,
a=[16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1]
output = [16 2 3 13 8 12 1 15 14 4 9 5 11 10 6 7]
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers15
Suggested Problems
-
3050 Solvers
-
Construct an index vector from two input vectors in vectorized fashion
461 Solvers
-
Generate a string like abbcccddddeeeee
276 Solvers
-
Find out missing number from a vector of 9 elements
322 Solvers
-
Golomb's self-describing sequence (based on Euler 341)
190 Solvers
More from this Author174
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Asif,
I think some of the solution vectors in this problem are incorrect. In problem 2, for example, all the numbers after 120 are duplicates.
sorry about that..there was a bug in my code
It's been fixed now