matlab 如何把具有不同字段的结构体合并?

2024-11-30 01:06:08
推荐回答(1个)
回答1:

st.a = '1'; st.b = 'gg'; % 建立结构体 A = cell(1,2); % 建立结构体数组 A{1} = st; % 数据赋值 A{2} = st;