Creating a 3D-Matrix containing structures

조회 수: 12 (최근 30일)
Tobias Hahn
Tobias Hahn 2018년 7월 25일
편집: Jan 2018년 7월 30일
I'm trying to create a 3D Matrix, were every cell contains a pair of 2 structs.
First idea, not working
c = linspace(1e03,1e05,20);
d = linspace(1e04,1e10,20);
A = struc(100,20,20);
for ii= 2:2:100
for cc=1:20
for dd=1:20
RES = struc(ii,c(cc),d(dd));
FAL = struc(ii,c(cc),d(dd));
A(ii,c(cc),d(dd))=[RES(ii,cc,dd);FAL(ii,cc,dd)];
end
end
end
For example, RES(50,3,4) and FAL(50,3,4) shall both be saved in the cell (50,3,4) within A.
  댓글 수: 3
Tobias Hahn
Tobias Hahn 2018년 7월 29일
To be honest, i have no idea. Up untill now it somehow worked and i never questioned it, because i never had the time to do so.
Jan
Jan 2018년 7월 30일
@Tobias Hahn: It is easy for you to find out, what struc is:
help struc
edit struc

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

답변 (1개)

Jan
Jan 2018년 7월 26일
Do you mean a cell array?
A = cell(100,20,20);
...
A{ii,c(cc),d(dd)} = [RES(ii,cc,dd);FAL(ii,cc,dd)];
^ ^ <== curly braces
  댓글 수: 2
Tobias Hahn
Tobias Hahn 2018년 7월 29일
Haven't heared of cell arrays until now, but i will try asap. Thanks a lot
Jan
Jan 2018년 7월 30일
편집: Jan 2018년 7월 30일
I recommend to read the Getting Started chapters of the documentations. Matlab's Onramp is fine also to learn the basics (and free of costs): https://matlabacademy.mathworks.com/

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

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by