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

https://github.com/mxk/mxencode

MATLAB data serialization functions
https://github.com/mxk/mxencode

deserialization encoder marshalling matlab serialization

Last synced: 4 months ago
JSON representation

MATLAB data serialization functions

Awesome Lists containing this project

README

        

MATLAB Data Serialization
=========================

Functions `mxencode` and `mxdecode` implement efficient serialize/deserialize
operations using a binary format for all basic MATLAB data types: numeric,
complex, logical, char, cell, struct, sparse, or any combination thereof.

These functions may be used directly from MATLAB without any additional
toolboxes or be converted to standalone C/C++ code with MATLAB Coder to simplify
data exchange between MATLAB and non-MATLAB components. See `mxcgentest.m` and
`mxcgenfunc.m` for an example.

Run `help mxencode` and `help mxdecode` in MATLAB for more info (or read the top
comment in each file).

Conversion to standalone code requires MATLAB R2016b or later.