MATLAB - 将元胞数组写入 csv 文件

发布于 2024-11-28 22:07:54 字数 215 浏览 0 评论 0原文

我有一个元胞数组,其中包含字符和数字作为值。将其逐行输出到 csv 文件中并保持元胞数组的结构的最简单方法是什么? 例如,如果元胞数组是

[abc] [1] [131]
[def] [] []
[gh] [13] [999]

我希望文件看起来像

abc,1,131
def,,
gh,13,999

I have a cell array that has both characters and numbers as values. What is the simplest way to output it in a csv file, row by row, maintaining the structure of the cell array?
For example, if the cell array is

[abc] [1] [131]
[def] [] []
[gh] [13] [999]

I want the file to look like

abc,1,131
def,,
gh,13,999

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心清如水 2024-12-05 22:07:54

例子:

%# cellarray
C = {
    'abc' [1]  [131]
    'def' []   []
    'gh'  [13] [999]
};

%# write line-by-line
fid = fopen('file.csv','wt');
for i=1:size(C,1)
    fprintf(fid, '%s,%d,%d\n', C{i,:});
end
fclose(fid);

Example:

%# cellarray
C = {
    'abc' [1]  [131]
    'def' []   []
    'gh'  [13] [999]
};

%# write line-by-line
fid = fopen('file.csv','wt');
for i=1:size(C,1)
    fprintf(fid, '%s,%d,%d\n', C{i,:});
end
fclose(fid);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文