Problem 43079. Check if two matrices are permutations of each other
Your function should return true for the elements of one matrix is the permutation of the other matrix:
x = [1 2 3; 4 5 6; 7 8 9] y = [3 5 6; 7 1 2; 4 9 8]
or
x = [1 2; 3 4; 5 6] y = [1 2 3; 4 5 6]
Please note that the matrices can have different shapes or sizes!
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers56
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15734 Solvers
-
757 Solvers
-
Determine the Anti-diagonal of a Magic Square
112 Solvers
-
173 Solvers
-
Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock.
952 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!