Filter löschen
Filter löschen

best way to store large time series data

2 Ansichten (letzte 30 Tage)
Srinivas
Srinivas am 16 Jan. 2013
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 Kommentar
Jing
Jing am 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.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Pedro Villena
Pedro Villena am 16 Jan. 2013
Bearbeitet: Pedro Villena am 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.

Weitere Antworten (0)

Kategorien

Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by