Import data from CSV file by Import Tool or textscan

조회 수: 2 (최근 30일)
kei hin
kei hin 2021년 11월 5일
답변: kei hin 2021년 11월 5일
I can import data from csv file by Import Tool(out type:string), and the tool could creat a script(textscan in it) to instead Import Tool. But, when I use Import Tool or script to import csv file, it lost blank line which in csv file. How to solve it? Thanks.
  댓글 수: 4
KSSV
KSSV 2021년 11월 5일
Read about readtable to load csv file.
kei hin
kei hin 2021년 11월 5일
편집: kei hin 2021년 11월 5일
readtable lost blank line too,and variable name in csv file will be changed. It is boring.

댓글을 달려면 로그인하십시오.

채택된 답변

kei hin
kei hin 2021년 11월 5일
In the script which Import Tool created, change
delimiter = ',';
to
delimiter = {',','\r'};
It seems to have been solved.

추가 답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 11월 5일
Use readmatrix() that would import all numerical data in a matrix form.

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by