Insert blank cells in a matrix
17 views (last 30 days)
Show older comments
Emilio Pulli
on 30 Nov 2021
Commented: Walter Roberson
on 2 Dec 2021
How can I replace all the NaN values of a matrix with a blank space?
0 Comments
Accepted Answer
Walter Roberson
on 30 Nov 2021
You cannot do that. Numeric matrices cannot have spaces in them.
You can convert the matrix into a cell array and put spaces into the cell array... but it is not clear why you would do that.
myCell = num2cell(MyMatrix);
myCell(isnan(MyMatrix)) = {' '}; %nan -> space
Now what?
12 Comments
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!