在matlab中预分配细胞结构

时间:2013-01-17 10:25:14

标签: matlab structure cell

我使用名为test的结构,其中包含以下“布局”(whos test, test的结果)

  Name      Size              Bytes  Class     Attributes
  test      1x1             8449048  struct              
test = 
     timestamp: {[7.3525e+05]  [7.3525e+05]  [7.3525e+05]}
    timeseries: {[44000x8 double]  [44000x8 double]  [44000x8 double]}

对于速度问题,我想用零预先分配它。 我发现了一些方法,导致其他“布局”:

test2=struct('timestamp',cell(1,3),'timeseries',cell(1,3));
test3=struct('timestamp',{0,0,0},'timeseries',{zeros(44000,8),zeros(44000,8),zeros(44000,8)});
tempstamp={0,0,0};
tempseries={zeros(44000,8),zeros(44000,8),zeros(44000,8)};
test4=struct('timestamp',tempstamp,'timeseries',tempseries);
whos test2 test3 test4,test2,test3,test4

导致

  Name       Size              Bytes  Class     Attributes
  test2      1x3                 176  struct              
  test3      1x3             8448824  struct              
  test4      1x3             8448824  struct              
test2 = 
1x3 struct array with fields:
    timestamp
    timeseries
test3 = 
1x3 struct array with fields:
    timestamp
    timeseries
test4 = 
1x3 struct array with fields:
    timestamp
    timeseries

发出命令test5.timestamp=tempstamp;test5.timeseries=tempseries;whos test5,test5时,会得到

 Name       Size              Bytes  Class     Attributes
  test5      1x1             8449048  struct              
test5 = 
     timestamp: {[0]  [0]  [0]}
    timeseries: {[44000x8 double]  [44000x8 double]  [44000x8 double]}

因此在test中复制“布局”。这很奇怪,不是吗? 进一步使用test2.timestamp{2}=nowtest3test4无效 好的,文档help struct中对此进行了描述,但是如何在一行中预先分配1x1 structtest这样的test5temp*?最好没有那些{{1}}变量。

2 个答案:

答案 0 :(得分:3)

对单元格使用struct初始化带有单元格的字段需要深度为2的单元格:

test=struct('timestamp',{cell(1,3)},'timeseries',{cell(1,3)});

test3 = struct( 'timestamp', { {0,0,0}},...
                'timeseries',{ {zeros(44000,8),zeros(44000,8),zeros(44000,8)} });

有关参考,请参阅struct doc关于“包含单元格数组的字段”的示例。

答案 1 :(得分:2)

另一种可能性(我觉得更容易阅读)是分别初始化每个字段。

test3.timestamp = {0, 0, 0};
test3.timeseries = {zeros(44000,8), zeros(44000,8), zeros(44000,8)};