save a m*n cell file as n text files
1 回表示 (過去 30 日間)
古いコメントを表示
Bhaskar panchireddi
2016 年 6 月 2 日
コメント済み: Bhaskar panchireddi
2016 年 6 月 2 日
My matlab code is generating a cell of order 10000*100. I have to save all the columns of this cell in text format separately. I mean i should get 100 text files. what should i do? please help
採用された回答
Ahmed Rashid
2016 年 6 月 2 日
a = rand(1000, 100);
for k = 1:100
fileID = fopen(['data', num2str(k), '.txt'],'w');
fprintf(fileID,'%f\n',a(:, k));
fclose(fileID);
end
5 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import and Export についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!