How to conbine the array inside the structure?

1 次查看(过去 30 天)
For example,
1X10 Struct
Structure(1)=1X5 array
Structure(2)=1X10 array
Is there a way to combine it into 1X15 array?
THanks

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2014-8-13
struct1=struct('f1',num2cell(1:10))
struct2=struct('f2',num2cell(1:5))
new_struct=struct('new_f',num2cell([struct1.f1 struct2.f2 ]))

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Structures 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by