How to extract data in excel file in matlab

22 views (last 30 days)
]

Accepted Answer

David
David on 17 Feb 2020
Thanks you so much for your help. Is that ind is the function code or something that i named before?

More Answers (1)

Bhaskar R
Bhaskar R on 17 Feb 2020
data = readmatrix('2014-2015 KU Basketball.xlsx');
[val, ind] = max(data(:, 2));
game_num = data(ind, 1);
  3 Comments
David
David on 17 Feb 2020
Oh i got it. Thanks you so much. It is really helpful

Sign in to comment.

Categories

Find more on Data Import from MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!