what would be the command to save or open a particular excel data.xls with the designation in a particular drive or folder?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
xlswrite might be the one, but I don't know how to add the information on the destination to save data. Same question to xlsread to search and read a file.
0 Kommentare
Akzeptierte Antwort
Cedric
am 10 Okt. 2017
Bearbeitet: Cedric
am 10 Okt. 2017
Here is an example. Make sure that the destination folder exists already. If not or if you have to create destination folders dynamically, use EXIST for testing if they exist already and MKDIR for making them if necessary.
data = randi( 10, 5, 3 ) ;
header = {'A', 'B', 'C'} ;
% - Build cell array of mixed content (strings and numbers).
data = [header; num2cell( data )] ;
% - Concatenate path bits to relevant destination file/folder.
locator = fullfile( '..', 'Data', 'Measures.xlsx' ) ;
% - Build Excel file.
xlswrite( locator, data ) ;
3 Kommentare
Cedric
am 10 Okt. 2017
Bearbeitet: Cedric
am 10 Okt. 2017
It was for building a path that targets a folder at the same level as the current folder.
Let's try to write to a file in the same folder first, to eliminate the complication of building a path: does the following work?
header={'a','b','c'};
data=randi(10,5,3);
xlswrite('test.xlsx',data);
Weitere Antworten (0)
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!