Filter löschen
Filter löschen

How to conbine the array inside the structure?

4 Ansichten (letzte 30 Tage)
tabw
tabw am 13 Aug. 2014
Beantwortet: Azzi Abdelmalek am 13 Aug. 2014
For example,
1X10 Struct
Structure(1)=1X5 array
Structure(2)=1X10 array
Is there a way to combine it into 1X15 array?
THanks

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by