How can I get txtscan to read this file?
1 view (last 30 days)
Show older comments
David Winthrop
on 21 Sep 2022
Commented: Star Strider
on 21 Sep 2022
I tried this but it only seems to have read the first line. There are tabs between columns, I believe.
G = textscan(F,'%15.15f\t%15.15f\t%15.15f\t%15.15f\t%15.15f','headerlines',1)
Thanks
0 Comments
Accepted Answer
Star Strider
on 21 Sep 2022
It would help to have the file to experiment with.
If textscan is only reaidng the first line, consider adding:
'EndOfLine','\r\n'
That has worked for me in the past.
.
2 Comments
More Answers (0)
See Also
Categories
Find more on Data Import and Export 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!