How do I select certain columns to import, from a table using the import tool? e.g. I want to import column A, D and U
23 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How do I select certain columns to import, from a table using the import tool?
e.g. I want to import column A, D and U
I'm completely new to Matlab and am not sure as to the best way to import data onto Matlab. I'm looking at 'Coronavirus Pandemic Cases by Country' and only need data of cases from: Australia, China, Italy, the United States, Brazil, and Zambia.
The document is a .xlsx file.
2 comentarios
Sindar
el 5 de Nov. de 2020
using the import tool, you can simply CTRL-click the columns you want (click the letters at the top)
Naif Alsalem
el 5 de Nov. de 2020
You could do it this way:
1- Copy all the data and paste them in a file and maybe call it data.txt
2- Make sure the data.txt file is in your matlab path
3- try these basic lines to call your columns
load 'data.txt';
A=data(:,1); %calling column A -- Number 1 means that A is the 1st column
B=data(:,2); %calling column D -- Number 2 means that B is the 2nd column
Respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!