Write a cell array in text file using Matlab
问题 I have a cell array with the size of 1*15. whos C Name Size Bytes Class Attributes C 1x15 222520 cell In each cell, there are 1170 elements. The 15 cells are mixture of strings and numbers. I want to save all these elements to a text file with coma as delimiter. I tried to use the function dlmcell, dlmcell('file_out.txt.,C,'delimiter',','), it can only write the first value of each cell to the text file. And the cell contains string cannot be write to the text file. Can anyone help? Thanks!