https://github.com/geontech/xmidasbluereader
MATLAB library for reading X-Midas BLUE -format files
https://github.com/geontech/xmidasbluereader
matlab-library midas
Last synced: 7 months ago
JSON representation
MATLAB library for reading X-Midas BLUE -format files
- Host: GitHub
- URL: https://github.com/geontech/xmidasbluereader
- Owner: Geontech
- License: mit
- Created: 2018-02-01T19:28:29.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-05T15:07:33.000Z (over 7 years ago)
- Last Synced: 2025-01-21T12:48:41.769Z (9 months ago)
- Topics: matlab-library, midas
- Language: Matlab
- Size: 5.86 KB
- Stars: 4
- Watchers: 5
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# XMidasBlueReader
This MATLAB class is a utility to progressively read through BLUE -format files.
```
bf = XMidasBlueReader('...path/to/bluefile');
% Header control block: bf.hcb% Read 4096 samples into a cell array
samps = bf.read(4096);
sampsMat = cell2mat(samps); % As a vector or matrix
```