5

我创建了一个结构文件的单元格数组,例如:

>> res2

res2 = 

  Columns 1 through 7

    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]

  Columns 8 through 10

    [1x1 struct]    [1x1 struct]    [1x1 struct]



>> res2{1}

ans = 

    nchi005_randchi005: 0.1061
          nfdr_randfdr: 0.0011
          nlgt_randlgt: 2.9517e-004
      nphast_randphast: 0.6660
           ndd_rand_dd: 0.0020
    ndd_rand_dd_larger: 1

    >> res2{1}.nlgt_randlgt

ans =

  2.9517e-004


>> res{:}.nlgt_randlgt
??? Bad cell reference operation.

是否有可能一次访问 res2-cellarray 的所有 nlgt_randlgt-fields?

4

2 回答 2

5

您需要做的就是将您res2的单元格数组转换为结构数组(使用cell2mat)。然后,您可以完全按照您想要的方式获取结构成员。这是一个示例,其中cdat是具有两个成员的结构元胞数组,s1s2.

cdat = 

    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]    [1x1 struct]

>> dat = cell2mat(cdat)

dat = 

1x10 struct array with fields:
    s1
    s2

>> [dat(:).s1]

ans =

     1     1     1     1     1     1     1     1     1     1
于 2012-07-12T01:45:43.643 回答
2

您可以通过以下方式访问单元格:

cellfun(@(r) r.nlgt_randlgt, res2);
于 2012-07-12T16:14:42.927 回答