Serialize/Deseriali​ze

バージョン 1.1.0.0 (3.31 KB) 作成者: Tim
Encode and decode almost any matlab variable into a sequence of bytes.
ダウンロード: 2.1K
更新 2010/12/16

ライセンスの表示

This pair of functions can serialize and deserialize (i.e. encode and decode) almost any matlab object into a sequence of bytes. This will be useful for saving objects to disk, sending them over the network, or perhaps to other programs.

Any combination of structs, cells and matrices are supported. All the data types (i.e. all integer sizes, chars, bools, singles and doubles) are supported. They are automatically converted back to double on decoding, but you can easily change this.

I haven't tested it extensively, but it's quite short so any bugs should be easy to fix.

Usage is like this:

astruct.field1 = [1 2 3]; astruct.field2 = {'foo', 'bar', 'baz'};
serialized_astruct = serialize(astruct);
deserialized_astruct = deserialize(serialized_astruct);

After execution, astruct and deserialized_astruct should be equal.

引用

Tim (2024). Serialize/Deserialize (https://www.mathworks.com/matlabcentral/fileexchange/29457-serialize-deserialize), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2010b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersData Type Conversion についてさらに検索
謝辞

ヒントを得たファイル: serialize

ヒントを与えたファイル: DataHash, Fast serialize/deserialize

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.1.0.0

Fix bug with single numbers.

1.0.0.0