how to take input as excel file from user in matlab??
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Rohit Bhoi
il 19 Feb 2016
Risposto: Walter Roberson
il 19 Feb 2016
I want to take excel file from user by using open dialog box.How to take it??
0 Commenti
Risposta accettata
Walter Roberson
il 19 Feb 2016
[filename, pathname] = uigetfile({'*.xls', '*.xlsx'}, 'Pick an excel file');
fullname = fullfile(pathname, filename);
[num, txt, raw] = xlsread(fullname);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Import from MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!