I can't load csv files properly.

18 views (last 30 days)
勇気 捧
勇気 捧 on 22 Apr 2021
Commented: Star Strider on 23 Apr 2021
Hi there.
I have been using the function dlmread to read csv files, but recently I have been getting errors.
I would like to know if there is a good solution.

Accepted Answer

Star Strider
Star Strider on 22 Apr 2021
Since .csv files are strictly numeric (although they can haved the first row as non-numeric headers), the files could have nonumeric fields that are causing problems. The easiest way to deal with this is probably to use the readcell function (introduced in R2019a) to read them.
That will load the contents into a cell array. It will then be possible for you to see the contents and can help you understand what the problem is. If the files have non-numeric headers, you can then choose to not read the first line, or to use other fucntions such as readtable to read them correctly.
  2 Comments
勇気 捧
勇気 捧 on 23 Apr 2021
Thank you for your detailed answer.
I was able to read the file using the readcell function.
Star Strider
Star Strider on 23 Apr 2021
As always, my pleasure!

Sign in to comment.

More Answers (0)

Categories

Find more on Tables 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!