save variables of different dimension in the same excel file

1 次查看(过去 30 天)
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

采纳的回答

F.
F. 2012-7-6
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 ;-)

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by