how to take input as excel file from user in matlab??

2 vues (au cours des 30 derniers jours)
Rohit Bhoi
Rohit Bhoi le 19 Fév 2016
I want to take excel file from user by using open dialog box.How to take it??

Réponse acceptée

Walter Roberson
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);

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by