Problem 44031. Matrix Manipulation

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

55.07% Correct | 44.93% Incorrect
Last Solution submitted on Oct 26, 2022

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers33

Suggested Problems

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!