Convert from a structure of arrays into an array of structures

版本 1.0.0.0 (1.5 KB) 作者: Celso Reyes
converts from a structure, where each field contains an Nx1 array, into an 1xN array of structures
686.0 次下载
更新时间 2013/3/11

查看许可证

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.

引用格式

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. 检索来源 .

MATLAB 版本兼容性
创建方式 R2011b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Data Types 的更多信息
致谢

启发作品: soa2aos(IN, LCHK)

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0