How can I make second struct with summary from the first struct?

1 回表示 (過去 30 日間)
Kiryl Zhaliazka
Kiryl Zhaliazka 2022 年 3 月 22 日
回答済み: Walter Roberson 2022 年 3 月 22 日
I have struct s with 96 fields 21*21, how can I make new struct s_new with fields that conteins sumarry of each column of fields from s.
(s_new should be 96 filelds 1*21.)
And the same thing but with summary of rows(96 fieldsd 21*1).

採用された回答

Walter Roberson
Walter Roberson 2022 年 3 月 22 日
s_new = structfun(@(field) sum(field,1), s, 'uniform', 0);
Change the sum to var or as required.

その他の回答 (0 件)

カテゴリ

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