You're given a matrix and a single number. If that number is in the matrix, reorder the matrix so that number is in the first row and first column of the matrix, and keep all of the other numbers in the same relative position. For example, your matrix is magic(3):
8 1 6
3 5 7
4 9 2and the number is nine. You want to change the matrix to
9 2 4
1 6 8
5 7 3Nine is now in the (1,1) position, and all of the other numbers are in the same relative position to nine. If the number is not in the matrix, just return the original matrix. Likewise, if the number appears more than once, make sure the first instance of the number is the one that is moved to the front. Good luck!
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers149
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
53247 Solvers
-
2186 Solvers
-
475 Solvers
-
Remove entire row and column in the matrix containing the input values
563 Solvers
-
Convert matrix to 3D array of triangular matrices
137 Solvers
More from this Author80
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
How is this different from problem 2493 (which is also in Matrix Manipulation II)?
This problem is exactly the same as the previous one, "Must be in the fornt row..."