Respuesta aceptada

KSSV
KSSV el 20 de Mayo de 2022

0 votos

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

Más respuestas (1)

Jan
Jan el 20 de Mayo de 2022

0 votos

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

Categorías

Más información sobre Data Import and Analysis en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 20 de Mayo de 2022

Respondida:

el 20 de Mayo de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by