Struct contents reference from a non-struct array object

조회 수: 1 (최근 30일)
skanwal
skanwal 2018년 11월 28일
댓글: Greg 2018년 11월 29일
Hi,
I have ds containing cell arrrays (1 by 3571) and each cell index points to a table of 4 by 7 elements. When any cell is empty while concatenating, the above error is shown. Basically, I am trying to access the contents of the cells contained within the cell array "Table" and plot different fields on a 1 by 3571 grid where each index refers to a point on a lat/lon grid.
Here is the code: Any ideas how to fix the error and plot the content of the data set.
for n = 1:3571;
Unc{n}=Table{1,n}.UncA
end;
whos Table
Name Size Bytes Class Attributes
Table 1x3571 9326972 cell
Here is the sample content of one of the cells contained in teh cell array.
Var A UncA B UncB C UncC
'1' -0.0186917327837646 -0.0266242514128150 0.00420612704074986 -0.00200002085968102 0.107411895593770 0.0187751225715014
'2' -0.0141854422900873 -0.0316765707830826 0.00382987363234866 -0.00237934723997174 0.0345770815773565 0.0224174109442981
'3' -0.0180850135958575 -0.0258819602652245 0.00416311313467285 -0.00194411629488122 NaN NaN
'4' -0.0167188467826965 -0.0315984164923636 0.00407529091905538 -0.00236624020568344 NaN NaN

채택된 답변

Greg
Greg 2018년 11월 28일
편집: Greg 2018년 11월 29일
If I'm understanding correctly, some indices of your cell array contain tables, and others are empty? What do you want to happen with the empty cells?
blnEmptyCells = cellfun(@isempty,Table);
%%% If throwing them out isn't ok, see additional posts below
Table(blnEmptyCells) = [];
Unc = cell(length(Table),1);
for ij = 1:length(Table)
Unc{ij} = Table{1,ij}.UncA;
end
  댓글 수: 5
skanwal
skanwal 2018년 11월 29일
Thank you Greg. That has solved the problem now. I have the same no of cells in the output as in the original data set.
Greg
Greg 2018년 11월 29일
Happy to help!

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

추가 답변 (1개)

skanwal
skanwal 2018년 11월 29일
From the origical data (1 by 3071), I have the indices for both the empty and non-empty cells. is there any way that I can fill the newly generated cells array which is 1 by 2076 cell array (with empty cells removed ) with elements such as empty cells or NaN based on the indices in MATLAB where there were empty cells in the original data to keep the dimensions of the data same?

카테고리

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

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by