How to extract data in excel file in matlab
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
]
0 commentaires
Réponse acceptée
Plus de réponses (1)
Bhaskar R
le 17 Fév 2020
data = readmatrix('2014-2015 KU Basketball.xlsx');
[val, ind] = max(data(:, 2));
game_num = data(ind, 1);
3 commentaires
Bhaskar R
le 17 Fév 2020
ind is index of the maximum value in column 2. read https://in.mathworks.com/help/matlab/ref/max.html
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!