Filter löschen
Filter löschen

Pre allocating all fields in a structure?

10 Ansichten (letzte 30 Tage)
HRmatlab
HRmatlab am 26 Aug. 2016
Kommentiert: James Tursa am 26 Aug. 2016
I have several structures that can have variable sizes and must handle a large amount of data of various types. Each structure may have 25 or more fields. I want to preallocate these structures but all the solutions I found preallocate each structure field individually. pseudo code example:
mystructure.a = preallocate; % using your favorite method
mystructure.b = preallocate;
....
etc.
Since I have so many fields and multiple structures this becomes rather cumbersome. Is there a way to preallocate all the fields in the structure in one line? Example:
mystructure.all the fields = preallocate; % using your favorite method
Thank you in advance
  2 Kommentare
Stephen23
Stephen23 am 26 Aug. 2016
Bearbeitet: Stephen23 am 26 Aug. 2016
According to Loren's blog post, although it is recommended to preallocate the structure itself, preallocating the contents of each field has no effect on the memory used by the structure.
Essentially the structure is one array (which should be preallocated), but each field is its own array quite independent of the structure itself.
James Tursa
James Tursa am 26 Aug. 2016
Expanding a bit on Stephen's comment. Preallocating the structure size and field names makes sense, but preallocating (i.e., assigning values to) the field elements themselves usually only makes sense in two special cases:
1) You want to give a large number of field elements a default value, and you only plan on replacing some of the field elements later on with something different.
2) You plan on altering those field elements essentially "in-place" later on as opposed to replacing them with another variable. E.g., if you are just going to replace them with a different variable later on then the preallocation didn't do anything for you other than slow down your code and use memory unnecessarily.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Fangjun Jiang
Fangjun Jiang am 26 Aug. 2016
mystructure=cell2struct({1,'xyz'},{'a','b'},2)

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by