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!