2017-04-10 7 views

답변

0

뭔가가 당신을 위해 작동하지 않을 수 있습니다 도와주세요 :

C = cell(1,3); 
C{1,1} = rand(1,10); 
C{1,2} = rand(1,20); 
C{1,3} = rand(4,5); 
filename = 'myfile.xlsx'; 
xlswrite(filename,C{1,1},1,'A1:A11'); 
xlswrite(filename,C{1,2},1,'B1:B21'); 
xlswrite(filename,C{1,3},1,'C1:G5'); 

enter image description here