MATLAB - 将元胞数组写入 csv 文件
我有一个元胞数组,其中包含字符和数字作为值。将其逐行输出到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例子:
Example: