How can i convert excel file into array form in MATLAB
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Excel file consist of many data and i want to use array in MATLAB.
0 commentaires
Réponse acceptée
KSSV
le 26 Sep 2017
You need to read the excel file data into MATLAB first. This can be achieved with Xlsread. Read the documentation of xlsread.
2 commentaires
KSSV
le 26 Sep 2017
[num,txt,raw] = xlsread(filename) ;
num is the data of numbers you had in excel...you can do what ever you want with that.
Plus de réponses (0)
Voir également
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!