Replacing NaN with blanks in a matrix
Show older comments
I've a matrix which looks like the one attached. How do I replace NaNs with blank spaces without altering anything else?
Thanks in advance.
Answers (1)
Ridwan Alam
on 6 Jan 2020
0 votes
I believe you are looking for fillmissing() or rmmissing():
4 Comments
alok pandey
on 9 Jan 2020
Ridwan Alam
on 9 Jan 2020
Edited: Ridwan Alam
on 9 Jan 2020
Alok, sure, just trying to help here.
If you can kindly explain what you mean by "gone". If you mean empty cells, have you ever tried to create a "matrix" with an empty cell? If you are okay with any other format, like string, you can use fillmissing() to fill in spaces. Are you looking for something like that?
blah = string(Phase_data);
blah = fillmissing(blah,'constant',"");
alok pandey
on 9 Jan 2020
Ridwan Alam
on 9 Jan 2020
I was wondering if it is possible to replace (remove) NaNs and have 'empty cells' instead.
Nope, I don't think that's possible. Sorry.
Categories
Find more on Resizing and Reshaping Matrices 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!