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.

 Akzeptierte Antwort

Star Strider
Star Strider am 22 Apr. 2021

0 Stimmen

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 Kommentare

勇気 捧
勇気 捧 am 23 Apr. 2021
Thank you for your detailed answer.
I was able to read the file using the readcell function.
Star Strider
Star Strider am 23 Apr. 2021
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by