I have a huge amount of data (> 800 MB) that takes the age to load into Matlab mainly because it breaks into tiny files every <20kB. They are all in a proprietary format that I can read and load into Matlab, it just took so long.
I am going to read the data and write it to some kind of binary file, which should make it faster for subsequent readings (which can be many, so I need acceleration).
So my question is: what is the best format to write to disk to read them as quickly as possible?
I assume that I have the ability to write using fwrite or just save variables from matlab. I think I would prefer the fwrite option, so if necessary, I could read them from another package / language ...
source
share