convert double NaN to string NaN

77 ビュー (過去 30 日間)
Daneisha Blair
Daneisha Blair 2021 年 8 月 24 日
コメント済み: Daneisha Blair 2021 年 8 月 24 日
Hi
I have a cell array with NaN as shown in the image. How can I convert NaN to string NaN meaning instead of of seeing NaN in the array, I want to see "NaN".
I have tried this: TC(cellfun(@(x) any(isnan(x)),TC,'UniformOutput',false)) = {"NaN"}; but no success.
Any help is appreciated.

採用された回答

KSSV
KSSV 2021 年 8 月 24 日
A = NaN(2,5) ;
C = arrayfun(@num2str,A,'UniformOutput',false)
C = 2×5 cell array
{'NaN'} {'NaN'} {'NaN'} {'NaN'} {'NaN'} {'NaN'} {'NaN'} {'NaN'} {'NaN'} {'NaN'}
  5 件のコメント
Daneisha Blair
Daneisha Blair 2021 年 8 月 24 日
Wait, how can I get it in string array instead of cell array, please?
Daneisha Blair
Daneisha Blair 2021 年 8 月 24 日
I got it :) . string(arrayfun(@num2str,A,'UniformOutput',false)).

サインインしてコメントする。

その他の回答 (1 件)

darova
darova 2021 年 8 月 24 日
Try num2str
a = {nan 1 nan};
cellfun(@num2str,a,'UniformOutput',0)
ans = 1×2 cell array
{'NaN'} {'NaN'}
  1 件のコメント
Daneisha Blair
Daneisha Blair 2021 年 8 月 24 日
This didn't give me quite what I was looking for.
For clarification, TC is in the structure of:
TC = {["Mercury","Gemini", "Apollo"; ...
"Skylab", "Skylab B","ISS"], ...
["Mercury","Gemini";
"Skylab","Skylab B"]}
% Output array
TC = cellfun(@(x) nan(size(x,1),1) ,TC,'UniformOutput',false)
which created double NaN
However, I want it in string NaN, like this {'NaN'}
Hope this help.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by