An open API service indexing awesome lists of open source software.

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

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
```