Expand description
Read (and maybe one day write) XDF files Currently the only supported XDF version is 1.0. (at the time of writing, this the only version that exists)
This library provides a way to read files in the [XDF format
] as specified by SCCN.
§Example
let bytes = fs::read("tests/minimal.xdf")?;
let xdf_file = XDFFile::from_bytes(&bytes)?;
Structs§
- Sample
- A single sample in a stream. Samples may have a timestamp and one or more values.
- XDFFile
- XDF file struct
The main struct representing an XDF file.