how to take input as excel file from user in matlab??
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Rohit Bhoi
le 19 Fév 2016
Réponse apportée : Walter Roberson
le 19 Fév 2016
I want to take excel file from user by using open dialog box.How to take it??
0 commentaires
Réponse acceptée
Walter Roberson
le 19 Fév 2016
[filename, pathname] = uigetfile({'*.xls', '*.xlsx'}, 'Pick an excel file');
fullname = fullfile(pathname, filename);
[num, txt, raw] = xlsread(fullname);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Import from MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!