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
Solution Comments
Show commentsProblem Recent Solvers103
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6700 Solvers
-
3433 Solvers
-
Make an awesome ramp for a tiny motorcycle stuntman
751 Solvers
-
Find Index of maximum Value and maximum Value of a vector
168 Solvers
-
Who has power to do everything in this world?
486 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!
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!