writecell errors with nested cells
13 次查看(过去 30 天)
显示 更早的评论
I have a large variable that I want to export out of Matlab;
Name Size Bytes Class
NewDataSet2 756071x9 1167474054 cell
When I try to export it using:
writecell(NewDataSet2,'myDataFile.csv')
I get this error:
Error using writecell (line 117)
Nested cell arrays are not supported.
Any ideas on how to get this variable out of matlab and into a file (such as a text or excel file)?
0 个评论
回答(1 个)
Jan
2019-5-3
It depends on what the contents of the cell elements is. Posting just the size does not allow to know this. Perhaps all you need is:
data = cell2mat(NewDataSet2)
3 个评论
Jan
2019-5-4
编辑:Jan
2019-5-4
@Jessica: Are you sure that you have to store such a large set of data in a cell array? This is rather inefficient. Please post a small example of the data. Then suggesting a solution is not based on pure guessing only.
If "determine the contents" means to get the class of the data:
cellfun('isclass', C, 'double')
cellfun(@class, C, 'UniformOutput', false)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Identification 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!