convert an empty cell to a string
21 views (last 30 days)
Show older comments
NAFTALI HERSCOVICI
on 12 Jan 2022
Commented: NAFTALI HERSCOVICI
on 12 Jan 2022
Hello,
I have this cell A={[NaN]} that I need to convert it into a string
Any ideas?
Thanks
0 Comments
Accepted Answer
Cris LaPierre
on 12 Jan 2022
I guess it depends on what you want the empty string value to be. The code is straightforward enough.
A={[NaN]}
B = string(A)
More Answers (0)
See Also
Categories
Find more on Data Type Conversion 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!