Given a 2*m-1 by 4*m-3 matrix in which certain elements form a hexagon of side length m, rotate the hexagon 60 degrees counterclockwise, as shown below for m=3:
A=[
'--A-A-A--'
'-B-B-B-B-'
'C-C-C-C-C'
'-D-D-D-D-'
'--E-E-E--']
rot60(A)=[
'--A-B-C--'
'-A-B-C-D-'
'A-B-C-D-E'
'-B-C-D-E-'
'--C-D-E--']
A=rot60(A,n) should rotate the hexagon 60*n degrees counterclockwise (and thus clockwise if n<0).
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers4
Suggested Problems
-
Getting the absolute index from a matrix
259 Solvers
-
Sum the elements in either diagonal of a square matrix
223 Solvers
-
1699 Solvers
-
Matlab Basics II - Count rows in a matrix
412 Solvers
-
Matrix of almost all zeros, except for main diagonal
191 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!