writing multiple 2D matrices in 1 excel file
Show older comments
I have multiple variables containing 2D data that I want to write in either xls or txt file.
Suppose in each iteration I get A = [50x2], B=[10x2], C=[13x2], D=[11x2], E=[15x2], I want to write all this data in the same excel sheet. Is it possible. Any help appreciated. TIA.
Accepted Answer
More Answers (1)
KSSV
on 28 Aug 2017
A = rand(10,3) ;
B = rand(3,3) ;
dlmwrite('test.txt',A,'-append')
dlmwrite('test.txt',B,'-append')
1 Comment
Ananya Malik
on 28 Aug 2017
Edited: Ananya Malik
on 28 Aug 2017
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!