Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Is it possible to use an argument in order to choose which excel file should be imported
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I need to import a database depending on an input argument. If a user chooses 'x' as a parameter being studied, I would like to import the 'x' excel database which contains the information to be analysed. Is this possible?
0 comentarios
Respuestas (1)
Walter Roberson
el 5 de Sept. de 2016
which_file = input('Name a database', 's');
[num, txt, raw] = xlsread(which_file);
2 comentarios
Joshua Welsh
el 5 de Sept. de 2016
Editada: Walter Roberson
el 6 de Sept. de 2016
Walter Roberson
el 6 de Sept. de 2016
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!