matlab带字符串的cell存储为csv格式、文件

由于matlab没有cell2csv函数。如果cell既带有字符串又有数字,将其存储为csv格式会比较麻烦。如果全为数字的cell,可将cell转化为矩阵,详见num2cell、cell2mat(matlab自带函数),然后用csvwrite(‘csv.txt’,A)存储为csv格式,csvread()为读取csv文件。以下为cell2csv.m的定义。

%存储为cell2csv.m 调用即可
function cell2csv(fileName, cellArray, separator, excelYear, decimal)
% % Writes cell array content into a *.csv file.
% % 
% % CELL2CSV(fileName, cellArray[, separator, excelYear, decimal])
% %
% % fileName     = Name of the file to save. [ e.g. 'text.csv' ]
% % cellArray    = Name of the Cell Array where the data is 

你可能感兴趣的:(matlab)