convert an empty cell to a string

14 次查看(过去 30 天)
Hello,
I have this cell A={[NaN]} that I need to convert it into a string
Any ideas?
Thanks

采纳的回答

Cris LaPierre
Cris LaPierre 2022-1-12
I guess it depends on what you want the empty string value to be. The code is straightforward enough.
A={[NaN]}
A = 1×1 cell array
{[NaN]}
B = string(A)
B = <missing>
You can read more about what MATLAB uses for missing values for the different data types here.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

产品


版本

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by