how to import the result into excel file
1 回表示 (過去 30 日間)
古いコメントを表示
i want to import the result into excel file.i use xlswrite command but i didnt get the data into excel
0 件のコメント
回答 (1 件)
Mathieu NOE
2021 年 2 月 9 日
hello
see 2 methods example below :
for k=1:10
xlswrite('Result.xlsx',rand(k),k); % option 1
writematrix(rand(k),'myData.xlsx','Sheet',k); % option 2
end
%
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!