save variables of different dimension in the same excel file

1 visualizzazione (ultimi 30 giorni)
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

Risposta accettata

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

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by