Textscan, dlmread, and importdata all not working
Show older comments
I have a very simple text file comprised of 1's and 0's. I have tried to read it into MATLAB with every function I can find, but nonetheless I get an error of some form. dlmread seems the most promising, but it throws a "Mismatch between file and format character vector." error. textscan did not work as it created a 1X1 cell with all of the data in it, and trying A = A{:} also did not work, similar error with importdata. Any help would be much appreciated.
6 Comments
Skyler Castillo-Wilson
on 29 Jun 2018
Star Strider
on 29 Jun 2018
‘... trying A = A{:} also did not work ...’
Try using the cell2mat function, or alternatively:
[A{:}]
Skyler Castillo-Wilson
on 29 Jun 2018
" textscan did not work as it created a 1X1 cell with all of the data in it"
Why do you think that having the data in one cell is a problem? What is important is how you called textcan and the content of the cell. But unless you give us this information we will just be guessing...
Skyler Castillo-Wilson
on 29 Jun 2018
Accepted Answer
More Answers (0)
Categories
Find more on Spreadsheets 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!