best way to store large time series data

2 views (last 30 days)
I plan to collect intraday data (1 min) for several instruments. what is the best way to keep them for long term ?
should I keep appending in a mat file , with one mat file for each instrument or should I keep them as CSV in different text file for each instrument.
what would be more robust ?
  1 Comment
Jing
Jing on 16 Jan 2013
What do you mean 'robust'? CSV is more compatible with other software, like Excel, and can open with plain text editor while mat-file can't. But mat-file can save all kinds of variables in MATLAB.

Sign in to comment.

Accepted Answer

Pedro Villena
Pedro Villena on 16 Jan 2013
Edited: Pedro Villena on 16 Jan 2013
The EAS3 file format is used to store floating point data in IEEE format and to exchange the files between different computer architectures (little/big endian). The data is organized as parameters with one parameter being a one-, two- or three-dimensional floating point array. Several of these parameters may be combined to one time step. This allows to store five-dimensional arrays. Data can be written in single-precision (32 Bit), double-precision (64 Bit) or quadruple-precision (128 Bit). Geometry information for the different directions are saved in the header of the file. It is also possible to store additional information in user defined arrays there. With the file size being limited only by the computer itself (e.g. file system), EAS3 files are suitable for large simulations and thus for high-performance computing.

More Answers (0)

Categories

Find more on Data Import from MATLAB 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!