How can assign value to a field of structure?

1 回表示 (過去 30 日間)
SM
SM 2021 年 7 月 8 日
回答済み: Matt J 2021 年 7 月 8 日
I have a structure A of size (A,1)=10. I want to assign value 1 to one of the fields of A from 1 to 5. The output will be:
A(1).B=1
A(2).B=1
A(3).B=1
A(4).B=1
A(5).B=1
B is one of the fields of A.
I can do it by using loop. Is it possible to avoid loop?

回答 (1 件)

Matt J
Matt J 2021 年 7 月 8 日
[A(1:5).B]=deal(1)

カテゴリ

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