Problem 1842. rot45 : a different aproach
Inspired by problem 1840.
Given an arbitrary n by n matrix, rotate it 45 degrees counterclockwise as in the following example:
if x is
1 3
2 4
rot45(x) would then be
0 3 0
1 0 4
0 2 0
So the matrix gets larger each time it is rotated.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers14
Suggested Problems
-
2403 Solvers
-
Rotate input square matrix 90 degrees CCW without rot90
648 Solvers
-
654 Solvers
-
313 Solvers
-
Implement a bubble sort technique and output the number of swaps required
338 Solvers
More from this Author3
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!