how to take input as excel file from user in matlab??
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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??
0 comentarios
Respuesta aceptada
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);
0 comentarios
Más respuestas (0)
Ver también
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!