how to take input as excel file from user in matlab??
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Rohit Bhoi
am 19 Feb. 2016
Beantwortet: Walter Roberson
am 19 Feb. 2016
I want to take excel file from user by using open dialog box.How to take it??
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 19 Feb. 2016
[filename, pathname] = uigetfile({'*.xls', '*.xlsx'}, 'Pick an excel file');
fullname = fullfile(pathname, filename);
[num, txt, raw] = xlsread(fullname);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import from MATLAB 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!