Réponse acceptée

KSSV
KSSV le 20 Mai 2022

0 votes

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

Plus de réponses (1)

Jan
Jan le 20 Mai 2022

0 votes

T = readtable('Population_data.xlsx');
population = T{:, 3};

Catégories

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by