Problem 2351. Replace Nonzero Numbers with 1

Given the matrix x, return the matrix y with non zero elements replaced with 1.

Example:

 Input  x =  [ 1 2 0 0 0
               0 0 5 0 0 
               2 7 0 0 0
               0 6 9 3 3 ]
 Output y is [ 1 1 0 0 0
               0 0 1 0 0 
               1 1 0 0 0
               0 1 1 1 1 ]

Solution Stats

22.47% Correct | 77.53% Incorrect
Last Solution submitted on Apr 23, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers364

Problem Tags

Community Treasure Hunt

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

Start Hunting!