필터 지우기
필터 지우기

best way to store large time series data

조회 수: 2 (최근 30일)
Srinivas
Srinivas 2013년 1월 16일
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
Jing
Jing 2013년 1월 16일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Pedro Villena
Pedro Villena 2013년 1월 16일
편집: Pedro Villena 2013년 1월 16일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by