Given an m*n matrix, see if a matrix contains any 0s in any row. if it contains 0 anywhere in any particular row, delete that row and fill that row with random integer values between 3 to 15. For example: mat = [3 2 1 3; 3 0 0 1; 0 4 3 1]; answer = [3 2 1 3; 4 7 5 12; 4 9 10 14]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers38
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6682 Solvers
-
Sort a list of complex numbers based on far they are from the origin.
5793 Solvers
-
555 Solvers
-
Arrange vector in ascending order
816 Solvers
-
64 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The test suite of this problem has been updated to actually check for numbers in the specified range (between 3 to 15), so your random solutions should now work.