필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
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 CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by