How can I use xlswrite in a nested forloop without overwriting?
3 ビュー (過去 30 日間)
古いコメントを表示
Daniel Allkenmach
2016 年 2 月 3 日
コメント済み: Daniel Allkenmach
2016 年 2 月 3 日
HOw is i possible? I am using an algorithmn that is supposed to plot 713 bits of data into an excel data shee. Each time it overwrites. How can I do it so it doesn't overwrite? I am also using a nested for loop
0 件のコメント
採用された回答
Image Analyst
2016 年 2 月 3 日
Keep track of what row you want and set it in the arg list
for k = 1 : 3
cellReference = sprintf('A%d', k); % or whatever...
xlswrite(xlFileName, data, cellReference);
end
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!