matrw 0.1.4

MAT-file serializing and deserializing
Documentation
1
2
3
4
5
6
7
8
9
10
//! MAT-file Version 7 (Level 5) parser implementation according to
//!
//! 1. <https://www.mathworks.com/help/matlab/import_export/mat-file-versions.html>,
//! 2. <https://www.mathworks.com/help/pdf_doc/matlab/matfile_format.pdf>.
//!

pub mod flags;
pub mod matfile7;
pub mod types;
pub mod variable7;