How to save a specific field from struct as mat file

27 ビュー (過去 30 日間)
MB
MB 2020 年 4 月 12 日
編集済み: Ameer Hamza 2020 年 4 月 12 日
A.a = 1;
A.b = 2 ;
A.c = 3;
save('new_c', 'A.c')
In Line 4 I'm getting the floowing error:
Error using save
'A.c' is not a valid variable name.
How to do this. Please help.

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 12 日
A.a = 1;
A.b = 2 ;
A.c = 3;
save('new_c', '-struct', 'A', 'c')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by