Problem 52674. Sort Non-zeros
Consider 0s in a vector creates a break-point. sort all the sub-arrays created by those break points.
For example, a = [3, 4, 1, 0, 5, 3, 7, 4, 0]
ans= [1, 3, 4, 0, 3, 4, 5, 7, 0]
- the position of the 0s would remain unchanged.
- each sub-arrays are independent.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers14
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
51244 Solvers
-
Return a list sorted by number of occurrences
2833 Solvers
-
Find common elements in matrix rows
2681 Solvers
-
Return a list sorted by number of consecutive occurrences
396 Solvers
-
694 Solvers
More from this Author174
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!