Create a matrix from a csv
Show older comments
Hello, I have a csv file with a structure like this (or just take a look at the csv):
- name11,name21,name31
- number,number,number
- number,number,number
- ...
- name21,name22,name23
- number,number,number
- number,number,number
- ...
- name31,name32,name33
- number,number,number
- ...L ist the length of the space between two names, N is the number of matrixes.I want to save every number between two names as a separate matrix, the best would be a Lx3xN.How can I do that?
Answers (1)
madhan ravi
on 6 Nov 2018
Edited: madhan ravi
on 6 Nov 2018
Try
readtable()
T=readtable('Testfile_1.csv');
T(:,end-2:end) %reads last three columns
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!