Fastest way of opening a text file and converting it to a matrix?
3 次查看(过去 30 天)
显示 更早的评论
I currently have a large amount of text files i want to convert to matrices, each text file will have the same structure. I am currently using readmatrix but just opening and reading a few takes too long. Is there a faster way?
0 个评论
回答(2 个)
Rik
2024-3-29
doc fscanf
If you know the format, using that knowledge always improves speed, since the more complicated tools don't need to spend time figuring out the file structure.
0 个评论
Walter Roberson
2024-3-29
If your file happens to be just a rectangular block of numbers, with either blank or comma between them, then the fastest approach is to load() the file.
If your file happens to be some other form, then the fastest approach depends on the details.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!