change the value of a data structure field
1 回表示 (過去 30 日間)
古いコメントを表示
it's possible to avoid loop? thank
class(app.Sis)
ans =
'struct'
Sis(1).Val
ans =
'l'
h=size(Sis,2);
for i=1:h
Sis(i).Val='kkk';
end
採用された回答
Fangjun Jiang
2024 年 4 月 6 日
編集済み: Fangjun Jiang
2024 年 4 月 6 日
s(3).Val='1';
s.Val
[s.Val]=deal('2')
s.Val
0 件のコメント
その他の回答 (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!