save variables of different dimension in the same excel file

1 回表示 (過去 30 日間)
antonet
antonet 2012 年 7 月 6 日
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 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by