Create a matrix from a csv
이전 댓글 표시
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?
답변 (1개)
madhan ravi
2018년 11월 6일
편집: madhan ravi
2018년 11월 6일
Try
readtable()
T=readtable('Testfile_1.csv');
T(:,end-2:end) %reads last three columns
카테고리
도움말 센터 및 File Exchange에서 Holidays / Seasons에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!