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
Problem Comments
6 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers445
Suggested Problems
-
Project Euler: Problem 9, Pythagorean numbers
1385 Solvers
-
Set the array elements whose value is 13 to 0
1438 Solvers
-
Sum the numbers on the main diagonal
613 Solvers
-
790 Solvers
-
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
1964 Solvers
More from this Author6
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
>> isequal(NaN,NaN)
ans =
0
Therefore, the second test is inappropriate
isequaln should be used.
The way the problem is written, all nonzero elements, including NaN, should be changed to 1, but the test case doesn't work this way.
I updated the second test with isequaln so that NaN == NaN is true.
It should be mentioned that 1 must be placed in the non-zero elements except for NaN.
Replace all nonzero numbers with 1. Leave any NaN elements as NaN.