現在この提出コンテンツをフォロー中です。
- フォローしているコンテンツ フィードに更新が表示されます。
- コミュニケーション基本設定に応じて電子メールを受け取ることができます
matcode = SERIALIZE(x) generates matlab code of x
matcode = SERIALIZE(x, n) generates matlab code of x retaining n digits
of precision
SERIALIZE should be able to create matlab code of the following data types:
- matrices, vectors, and scalars of any class and dimension
- strings
- structs, arrays of structs with up to six dimensions
- cell arrays
- matlab objects with a copy constructor implemented
- empty values of any class
- any combinations hereof
The value of x can be obtained by
eval(matcode)
Examples
x = [1 2 3; 3 4 5];
serialize(x)
x = uint8(rand(10)*5);
matcode = serialize(x)
x = {rand(3,3,3,4), 'a string value', {1 2 3; 1 3 3 }}
matcode = serialize(x, 30)
引用
Jøger Hansegård (2026). serialize (https://jp.mathworks.com/matlabcentral/fileexchange/12063-serialize), MATLAB Central File Exchange. に取得済み.
謝辞
ヒントを与えたファイル: Serialize/Deserialize
一般的な情報
- バージョン 1.0.0.0 (1.98 KB)
-
ライセンスがありません
MATLAB リリースの互換性
- すべてのリリースと互換性あり
プラットフォームの互換性
- Windows
- macOS
- Linux
| バージョン | 公開済み | リリース ノート | Action |
|---|---|---|---|
| 1.0.0.0 | Fixed bug when serializing strings with special characters |
