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