Problem 51620. Sort Except Zeros
Sort the numbers in a vector. But the position of zeros should not be changed.
Example: sort_except_zeros( [5 3 0 0 2 4] ) == [2 3 0 0 4 5]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers34
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15746 Solvers
-
623 Solvers
-
Make a random, non-repeating vector.
10865 Solvers
-
Circular Primes (based on Project Euler, problem 35)
643 Solvers
-
The sum of the numbers in the vector
632 Solvers
More from this Author53
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!