Convert from a structure of arrays into an array of structures

converts from a structure, where each field contains an Nx1 array, into an 1xN array of structures
689 Downloads
Aktualisiert 11. Mär 2013

Lizenz anzeigen

Converts from a structure, where each field contains an Nx1 array, into an 1xN array of structures, where each field contains 1 value.

I decided to create and share this after not finding a readily available answer on the internet; though I suspect SOMEONE out there has already solved this issue.

USAGE:
S = structofarrays2arrayofstructs(A) assumes that A is a struct, with each field
containing Nx1 (columns) of values. (theoretically NxM values, where M may vary). This results in an Nx1 array of
structs, each containing 1 (or M) values.

Example
>> A.flower={'Daisy';'Rose';'Violet'};
>> A.color={'white';'red';'violet'};

>> S = structofarrays2arrayofstructs(A)

S =
1x3 struct array with fields:
flower
color

>> S(2)
ans =
flower: 'Rose'
color: 'red'

Note, Any cells it encounters are unwrapped.

In a test, with 6 fields, each with 377670x1 values (mixed, Cells of chars and arrays of Double), it took ~20 seconds to convert.

Zitieren als

Celso Reyes (2024). Convert from a structure of arrays into an array of structures (https://www.mathworks.com/matlabcentral/fileexchange/40712-convert-from-a-structure-of-arrays-into-an-array-of-structures), MATLAB Central File Exchange. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2011b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Data Types finden Sie in Help Center und MATLAB Answers
Quellenangaben

Inspiriert: soa2aos(IN, LCHK)

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.0.0.0