Effacer les filtres
Effacer les filtres

How to use .xlsx file to import data in a list?

1 vue (au cours des 30 derniers jours)
Valerio Q.
Valerio Q. le 26 Nov 2018
Commenté : Valerio Q. le 29 Nov 2018
hi everyone, i'm working on a matlab GUI, and i have an empty List2 in my code and a file 'D.xlsx' where in the first row there are strings like this
excel.PNG
where 'test_2.m' is the name of a script which contains a function.
i want to write this row (using a pushbutton),in my List2 in the code, to obtain:
List2={'test_2','test_2','test_2','test_2'};
How can i use the data in the .xlsx file to do this?
Is it possible?
if not, what can i do?

Réponse acceptée

Jayaram Theegala
Jayaram Theegala le 29 Nov 2018
You can use the "xlsread" function to read the text data that you want.
[~, txt] = xlsread('D.xlsx'); % This should return you the strings in form of Cell Array
For more information about the "xlsread" function, click on the following URL:
Hope this helps!
  1 commentaire
Valerio Q.
Valerio Q. le 29 Nov 2018
yes,it is perfect.
thank you so much :)

Connectez-vous pour commenter.

Plus de réponses (0)

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!

Translated by