gpt4 book ai didi

excel - writetable 在 Matlab 中用空白替换 NaN

转载 作者:行者123 更新时间:2023-12-01 07:35:38 25 4
gpt4 key购买 nike

给定一个包含许多 NaN 的 Matlab 表格,我如何将这个表格写成 excel 或 csv 文件,其中 NaN 被空格替换?

我使用以下函数:

T = table(NaN(5,2),'VariableNames',{'A','C'})

writetable(T, filename)

我不想用零替换它。我想要输出文件:

  1. 有 NaN 和
  2. 的空白
  3. 变量名称包含在输出中。

最佳答案

你只需要 xlswrite为了那个原因。它将 NaN 替换为空白本身。使用 table2celltable2array 的组合和 num2cell首先将您的表格转换为元胞数组。使用表的 VariableNames 属性检索变量名称并用元胞数组填充它们。

data= [T.Properties.VariableNames; table2cell(T)];
%or data= [T.Properties.VariableNames; num2cell(table2array(T))];
xlswrite('output',data);

示例运行:

T = table([1;2;3],[NaN; 410; 6],[31; NaN; 27],'VariableNames',{'One' 'Two' 'Three'})

T =

3×3 table

One Two Three
___ ___ _____

1 NaN 31
2 410 NaN
3 6 27

产量:

output


虽然我认为上面的解决方案更简单,但如果你真的想使用 writetable然后:

tmp = table2cell(T);             %Converting the table to a cell array
tmp(isnan(T.Variables)) = {[]}; %Replacing the NaN entries with []
T = array2table(tmp,'VariableNames',T.Properties.VariableNames); %Converting back to table
writetable(T,'output.csv'); %Writing to a csv file

关于excel - writetable 在 Matlab 中用空白替换 NaN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45753690/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com