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

5 visualizaciones (últimos 30 días)
Rohit Bhoi
Rohit Bhoi el 19 de Feb. de 2016
Respondida: Walter Roberson el 19 de Feb. de 2016
I want to take excel file from user by using open dialog box.How to take it??

Respuesta aceptada

Walter Roberson
Walter Roberson el 19 de Feb. de 2016
[filename, pathname] = uigetfile({'*.xls', '*.xlsx'}, 'Pick an excel file');
fullname = fullfile(pathname, filename);
[num, txt, raw] = xlsread(fullname);

Más respuestas (0)

Categorías

Más información sobre Data Import from MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by