Feeds
답변 있음
How can I concatenate or merge two structures?
You can do this manually: f = fieldnames(structA); for i = 1:length(f) structB.(f{i}) = structA.(f{i}) end
How can I concatenate or merge two structures?
You can do this manually: f = fieldnames(structA); for i = 1:length(f) structB.(f{i}) = structA.(f{i}) end
9년 초과 전 | 9
