Accepted Answer

KSSV
KSSV on 20 May 2022
T = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1005205/Population_data.xlsx') ;
T.Population_million_ % use column name
T.(3) % using index

More Answers (1)

Jan
Jan on 20 May 2022
T = readtable('Population_data.xlsx');
population = T{:, 3};

Categories

Find more on Data Import and Analysis in Help Center and File Exchange

Tags

Asked:

on 20 May 2022

Answered:

on 20 May 2022

Community Treasure Hunt

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

Start Hunting!