Create matrix from 2 columns of a csv file

A CSV file includes all my data in seperate columns and I'm trying to extract them separately for analysis. I'm using MATLAB R2019b, btw.
CSV file looks like the one that I've attached below (Please let me know if an actual csv is needed), it contains following information:
  1. Reference number (numbers - a consistant series)
  2. ID (a unique number)
  3. X, Y (Distances in a cartesia plane - upto 7 decimal points)
  4. Name (A string - not unique, includes numbers, letters and symbols)
  5. Time (a time stamp - I'd love to read it as yyyymmddhhmm, but reading it as date is also fine)
  6. A, B, C, D (numbers - includes decimals)
I can read the data and create the matrix that include all the columns using readmatrix and I can get specific parts from that matrix. But I want to read the CSV file and create separate matrices using separate columns.
For example:
matrix_1 = matrix that includes all data in columns ID and A
matrix_2 = matrix that includes all data in columns ID, X and Y and so on.
How can I approach this, while preserving the data types included in csv? Apologies if my question needs more clarification.

4 Comments

readtable() and extract several columns
T = readtable(...)
T(:, [2,6])
T(:, [2,3,4])
I recommend that you don't split up the table and use table indexing instead. There's rarely a good reason to split up a tidy data set. One exception is if you're trying to reduce the size of your table in memory by eliminating variables you know you'll never need.
Thanks, Adam! That's actually a good point. I was going to try creating different matrices but I'm realizing now that I can just use the table instead. Thanks for the advice!

Sign in to comment.

Answers (1)

Summary of comments under the question:
  1. Use readtable() to import the data
  2. Use table indexing rather than splitting the table into separate variables.

2 Comments

James, if you need more help, attach the CSV file. It's rarely / never a good idea to leave off a data file and then have people have to ask for it afterwards. So for now you'll have to live with hints and partial answers than complete turnkey solutions.
Apologies. I will keep that in mind :)

Sign in to comment.

Products

Release

R2019b

Asked:

on 29 Dec 2020

Commented:

on 30 Dec 2020

Community Treasure Hunt

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

Start Hunting!