2015-09-16 44 views

回答

0

我會給短的例子:

x= [ 1 2; 3 4] 
pth = 'C:\data\tst1.xls' 
Ncol = size(x,1) 
for i=1:size(x,2) 
    xlswrite(pth,x(1,:)',['A1:A' num2str(Ncol)]); 
    xlswrite(pth,x(1,:)',['B1:B' num2str(Ncol)]); 
end 

當然,如果你的列數小於26,你可以 保存在陣列單元名稱並在for循環索引它,這樣xlswrite需要寫一次。

相關問題