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 CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by