Modify values in a struct array

I would like to modify the values of a field of a struct array (without using a for loop). If my initial struct array is the following:
a.b(1).c = 5;
a.b(2).c = 5;
a.b(3).c = 5;
I would like to modify it such that:
a.b(1).c = 1
a.b(2).c = 2
a.b(3).c = 3
I thought that
[a.b.c] = [1:3]
would work, but it doesn't: Insufficient number of outputs from right hand side of equal sign to satisfy assignment.

 採用された回答

Walter Roberson
Walter Roberson 2020 年 4 月 1 日

0 投票

newvalues = 1:3;
temp = num2cell(newvalues);
[a.b.c] = temp{:};
Unfortunately this is not easy to do on one line, at least not without using a helper function.
Expand = @(temp) temp{:};
[a.b.c] = Expand(num2cell(1:3));

1 件のコメント

DC
DC 2020 年 4 月 1 日
Thank you, that works!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeStructures についてさらに検索

製品

リリース

R2018b

タグ

質問済み:

DC
2020 年 4 月 1 日

コメント済み:

DC
2020 年 4 月 1 日

Community Treasure Hunt

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

Start Hunting!

Translated by