Adding a new column to an existing csv file via Matlab.

조회 수: 22 (최근 30일)
Ivan Mich
Ivan Mich 2019년 7월 30일
댓글: Walter Roberson 2019년 7월 31일
Hello,
I have a question. I want to add a new column to an existing filename via commants in matlab. The existing file (called 'filename1' ) has 22 columns and 400 rows. I ve created the column that I want to add , whis has 400 rows too. The final output i want to have is a csv file with 23 columns and 400 rows. I used these commands , without results:
M1 = [filename1, num2cell(d1(1:end,7))].'; %transpose important
fid = fopen('gtm.csv','wt');
fprintf(fid,'%15s %.6f\n',M1{:} );
fclose(fid);
the "num2cell(d1(1:end,7))" is the new column that i want to add.
Thanking in advance

채택된 답변

Kojiro Saito
Kojiro Saito 2019년 7월 31일
You can do it easily with writetable.
Here is an example.
filename1 = 'existingData.csv';
% Read the CSV as a table
t = readtable(filename1);
% Add a new column to the end of the table
numOfColumn = size(t, 2);
newCol = num2cell(d1(1:end,7)); % Your new column
t.(numOfColumn+1) = newCol;
% Change column name if needed
t.Properties.VariableNames{numOfColumn+1} = 'newCol';
% Write to CSV file
writetable(t, 'new.csv')
  댓글 수: 6
Ivan Mich
Ivan Mich 2019년 7월 31일
Walter Roberson,Basically i believe that the main problem is in the command writetable, because command window shows me these:
Undefined function 'write' for input arguments of type 'cell'.
Error in writetable (line 106)
write(a,filename,varargin{:})
Error in test_v2_pro (line 103)
writetable(MI{:},'tabledata.txt')
Do you have any idea about the command should I use in order to finish it with success?
Walter Roberson
Walter Roberson 2019년 7월 31일
We are telling you that you should stop working with xlsread and should use readtable() to read your data, and use the command we show to add a new column to the table and then writetable the results.
%read file
t = readmatrix('filename1.csv');
% Add a new column to the end of the array
t(:,end+1) = d1(:,7); % Your new column
% Write to CSV file
writematrix(t, 'tabledata.txt')
Notice no xlsread, no cell array.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by