Fields in a Structure
9 ビュー (過去 30 日間)
古いコメントを表示
How can I fetch the list of fields in a structure? Regards, Preetam
0 件のコメント
採用された回答
その他の回答 (1 件)
Shivam
2022 年 7 月 30 日
You can fetch the fields of a structure S using fieldname this way.
fields = fieldnames(S)
It returns the field names of the structure array S in a cell array.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!