2

我使用了一个名为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}=now不能与test3and一起使用test4
好的,这在文档中有所描述help struct,但是我怎样才能预先分配这样1x1 structtesttest5在一行内?最好没有这些temp*变量。

4

2 回答 2

3

使用structwith cells 来初始化一个带有 cell 的字段需要 depth-2 cell:

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有关“包含单元阵列的字段”的示例文档。

于 2013-01-17T10:31:56.800 回答
2

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

test3.timestamp = {0, 0, 0};
test3.timeseries = {zeros(44000,8), zeros(44000,8), zeros(44000,8)};
于 2013-01-17T14:06:17.247 回答