I can't load csv files properly.

22 次查看(过去 30 天)
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.

采纳的回答

Star Strider
Star Strider 2021-4-22
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 个评论
勇気 捧
勇気 捧 2021-4-23
Thank you for your detailed answer.
I was able to read the file using the readcell function.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by