How to write a Loop for this case?

조회 수: 1 (최근 30일)
BN
BN 2019년 10월 28일
댓글: BN 2019년 10월 28일
Hello all,
I have one 1x1 struct with 34 field inside it. regarding the picture below, I would like to concatenation:
C= cat(3, y1982, y1983, y1984, ..., y2015)
cat.JPG
how to do it?
thank you

채택된 답변

Guillaume
Guillaume 2019년 10월 28일
Creating these numbered fields was a bad idea in the first place.Numbered or sequentially named variables or fields always make the code more complicated. If possible, i'd go back to the code that created them and change that.
Failing that, the easiest:
ctemp = struct2cell(precp_monthly); %convert struct into cell array
c = cat(3, ctemp{:}); %concatenate fields into 3D matrix
  댓글 수: 1
BN
BN 2019년 10월 28일
Dear @Guillaume,
Thank you this code solves my problem.
If you can please see my two previous questions about this case. they were answered. but If you can see and told me your comment, I would be grateful.
Thank you

댓글을 달려면 로그인하십시오.

추가 답변 (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