Filter löschen
Filter löschen

save variables of different dimension in the same excel file

2 Ansichten (letzte 30 Tage)
antonet
antonet am 6 Jul. 2012
Hi,
I want to save in the same excel file variables of different dimension that I create. Foe example say that a variable A is of dimension 1000 by 45 And a variable B is of dimension 40 by 1
I can not use
m = [A B ];
xlswrite('sugar.xlsx',m);
I want to save both A and B in the same excel file
thanks

Akzeptierte Antwort

F.
F. am 6 Jul. 2012
xlswrite(filename,A,sheet,range)
so did you try this ?
xlswrite('sugar.xlsx',A, 'Sheet01', 'A1');
xlswrite('sugar.xlsx',B, 'Sheet01', 'A50');
I let you define ranges with your data ;-)

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by