Problem 868. Replace all zeros and NaNs in a matrix with the string 'error'
Given a numeric input matrix A, possibly containing some zero values and some NaNs, replace any occurrences of zero or NaN with the character string 'error'. The output should be a cell array C of the same size as the input matrix. Each cell of the output cell array should either contain the corresponding entry of A if this is not zero or NaN, or the string 'error' otherwise.
Example:
If A = [1 0; NaN 1], then the output C should be the cell array C = {1, 'error'; 'error', 1}.
Solution Stats
Problem Comments
-
2 Comments
Any idea why b={1 0; nan 3}; isequal(b,b) gives false?
Don't bother... nan is not equal to nan unless you use isequaln!
Solution Comments
Show commentsProblem Recent Solvers100
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
51745 Solvers
-
Find state names that end with the letter A
1189 Solvers
-
Omit columns averages from a matrix
602 Solvers
-
600 Solvers
-
Side of an equilateral triangle
6646 Solvers
More from this Author4
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!