How to write cell array into a csv file
343 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jalaj Bidwai
le 5 Avr 2013
Réponse apportée : Vibhav Gaur
le 21 Juin 2021
Hello Everyone, I have a cell array C where the first row is string and the remaining rows contain numbers. How do I write the variable C into a CSV file?
For example,
c = {'abc' 'def' 'ghk';[23],[24],[67];[87],[13],[999];[656],[6767],[546]};
Thanks
0 commentaires
Réponse acceptée
Cedric
le 5 Avr 2013
Modifié(e) : MathWorks Support Team
le 27 Nov 2018
To write the data in C to a CSV file. Use “writetable” in combination with the “cell2table” function.
% Convert cell to a table and use first row as variable names
T = cell2table(c(2:end,:),'VariableNames',c(1,:))
% Write the table to a CSV file
writetable(T,'myDataFile.csv')
For more information see:
5 commentaires
Plus de réponses (8)
Jon
le 5 Avr 2013
You could do it as follows with fprintf
c = {'abc' 'def' 'ghk';[23],[24],[67];[87],[13],[999];[656],[6767],[546]};
fid = fopen('junk.csv','w')
fprintf(fid,'%s, %s, %s\n',c{1,:})
fprintf(fid,'%f, %f, %f\n',c{2:end,:})
fclose(fid)
6 commentaires
Azzi Abdelmalek
le 5 Avr 2013
Modifié(e) : Azzi Abdelmalek
le 5 Avr 2013
2 commentaires
Youcef Yahiaoui
le 19 Sep 2015
Azzi,good to see your comments here. I usually use fprintf(fid...) for the first header lines then use csvwrite with the option -append...
Zumbo_123
le 7 Jan 2016
Alternatively, you could use the method developed by Sylvain Fiedler. Below is the link to the file. It works with empty cells, numeric, char, string and logical cells. One array can contain all of them, but only one value per cell.
0 commentaires
Peter Farkas
le 9 Oct 2017
Convert to table and use writetable function T = cell2table(c(2:end, :)); T.Properties.VariableNames = c(1:end, :); writetable(T, res.csv);
0 commentaires
Aaron Thrasher
le 20 Avr 2018
I came to this page looking for an answer and found that all solutions were very slow for large arrays that include numeric and char based cell arrays of non-standard combinations. Instead, I created my own based off of previous comments and other research. I hope this helps someone as it has helped me reduce the time significantly.
function cellWrite(filename,origCell) % save a new version of the cell for reference modCell = origCell; % assume some cells are numeric, in which case set to char iNum = cellfun(@isnumeric,origCell); %% Method 1 using indexing and straight conversion = 7 sec tic modCell(iNum) = cellstr(num2str([origCell{iNum}]')); % toc %% Method 2 using arrayfun = 25 sec % tic % modCell(iNum) = arrayfun(@num2str,[origCell{iNum}],'unif',0); % toc
% tic [rNum,cNum] = size(origCell); frmt = repmat([repmat('%s,',1,cNum-1),'%s\n'],1,rNum); fid = fopen(filename,'w'); fprintf(fid,frmt,modCell{:}); fclose(fid); toc
end
2 commentaires
Aaron Thrasher
le 20 Avr 2018
Correction to the code - the cell needs to be transposed before writing because the data is written left to right vs. matlab reading cell top down.
Yoram Segal
le 27 Août 2018
convert the cell to a table and save the table as CSV
TT = array2table(C,'VariableNames',{'abc' 'def' 'ghk'});
writetable(TT,filename);
To read it back you can use TT = readtable(filename)
0 commentaires
Voir également
Catégories
En savoir plus sur Cell Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!