Create a matrix of a given size with sequential elements spiraling inward.
For matrix height m and width n, the output should be an m-by-n matrix with elements ranging from from 1 to m*n in a rectangular spiral pattern with 1 in position (1,1) and the first 'leg' of the spiral progressing down the first column, i.e., the left column of the output has elements 1:m.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers3
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6681 Solvers
-
middleAsColumn: Return all but first and last element as a column vector
645 Solvers
-
Set the array elements whose value is 13 to 0
1435 Solvers
-
194 Solvers
-
603 Solvers
More from this Author5
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Copy of #579. Spiral In