Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns as the first row does. Do not list the row as a match to itself.
Example:
Input a = [1 2 3 0
5 6 7 9
2 7 8 7]
Output b is 3since the third column follows the increase-increase-decrease pattern used in vector a.
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers2819
Suggested Problems
-
Project Euler: Problem 9, Pythagorean numbers
1386 Solvers
-
Sum of diagonal of a square matrix
1638 Solvers
-
Find out missing number from a vector of 9 elements
322 Solvers
-
Who has power to do everything in this world?
486 Solvers
-
473 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Not column, but row wise.
Good problem