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
- Host: GitHub
- URL: https://github.com/mxk/mxencode
- Owner: mxk
- License: bsd-3-clause
- Created: 2017-01-30T01:15:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-19T14:16:57.000Z (over 8 years ago)
- Last Synced: 2025-01-06T19:47:44.728Z (5 months ago)
- Topics: deserialization, encoder, marshalling, matlab, serialization
- Language: Matlab
- Size: 56.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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.