Write in the different csv cells in matlab

7 ビュー (過去 30 日間)
Kris zenitis
Kris zenitis 2014 年 7 月 21 日
回答済み: Shashank Prasanna 2014 年 7 月 21 日
I am trying to write a cell array into a csv file. Array is of size Nx5. I am using the following code:
fid = fopen('file.csv','w');
for i=1:size(data_names,1)
fprintf(fid, '%s %s %s %s %s', data_names{i,1:5});
fprintf(fid,'\n');
end
fclose(fid);
The problem is the it does write only in the first column of csv so I ve got the first 5 elements of the first row in an one column vector of size 5. How is it possible to write in the different column cell in csv???

回答 (1 件)

Shashank Prasanna
Shashank Prasanna 2014 年 7 月 21 日

カテゴリ

Help Center および File ExchangeLarge Files and Big Data についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by