how to import the result into excel file
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
i want to import the result into excel file.i use xlswrite command but i didnt get the data into excel
0 Kommentare
Antworten (1)
Mathieu NOE
am 9 Feb. 2021
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 Kommentare
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!