How to write a mixed data (text and number) in a CSV file ?

150 次查看(过去 30 天)
I need to write a CSV file with text matrix in the first column and numbers matrix in the second column.
Example
matrix1 = {'water';'space';'fire'};
matrix2 = [100;200;300];
CSV file output as:
water,100
space,200
fire,300
Please provide me some direction to solve this problem. Please let me know for further information.
Thanks in advance, Ram

回答(4 个)

per isakson
per isakson 2017-6-23
编辑:per isakson 2017-6-23
matrix1 = {'water';'space';'fire'};
matrix2 = [100;200;300];
fid = fopen( 'matrix.csv', 'w' );
for jj = 1 : length( matrix1 )
fprintf( fid, '%s,%d\n', matrix1{jj}, matrix2(jj) );
end
fclose( fid );
The format specifier %d assumes that matrix2 contains whole numbers, if not use %f

dpb
dpb 2017-6-23
It seems like "'round Robin Hood's barn!" way to get there, but believe it or not,
fname='yourfile.csv';
writetable(cell2table([matrix1 num2cell(matrix2),fname,'writevariablenames',0)
is about as simple a way to do the job as there is.
The mid-level routines such as dlmwrite are simply unable to deal with the cellstr content while the low-level routine fprintf requires you to handle all the formatting and loop writing each record one-at-a-time to build the file. Not terribly difficult but tedious at best and seems much harder than it actually is when just getting started. TMW has done quite a bit on the input side; the output side is lagging although writetable is a start, Matlab needs better high-level tools for outputting data that is something other than just double arrays.
  2 个评论
Daelyn Greene
Daelyn Greene 2019-2-20
编辑:Daelyn Greene 2019-2-20
Is there a way to append new data to the end of an existing file using this? I am wanting to do something exactly like this, only with data being gradually input over time from selections in a UI.
dpb
dpb 2019-2-21
With this workaround, no; not directly to text file; writetable has no "append" option.
You could take the additional circuitious route of writing to a spreadsheet and then saving it, but that would require keeping track of the number of lines written to compute the right range to specify so, while possible, not of more than theoretical interest.
In that case, there are any number of posts/answers but Per's solution below is the trick except you must open the file with the 'append' flag of 'a' or 'a+' instead of 'w' to not overwrite existing data in the file.

请先登录,再进行评论。


breathi
breathi 2019-12-13
Since R2019a,
writecell
is doing this perfectly for a cell array.

Mohit Rajora
Mohit Rajora 2020-8-19
To write the data in C to a CSV file. Use “writetable” in combination with the “cell2table” function.
  2 个评论
Mohamed Abdelhamid
Mohamed Abdelhamid 2021-10-10
Is there away to avoid the "varN" added to the written file when using "writetable"?
dpb
dpb 2021-10-10
See the doc for optional inputs...
...,'WriteVariableNames',0);
Or, as the other respondent above noted, use writecell instead. (Altho it calls writetable after using cell2table internally)

请先登录,再进行评论。

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by