Fastest way of opening a text file and converting it to a matrix?

20 次查看(过去 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?

回答(2 个)

Rik
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.

Walter Roberson
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.

类别

Help CenterFile Exchange 中查找有关 Live Scripts and Functions 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by