Filter löschen
Filter löschen

How to concatenate the elements of the structure?

10 Ansichten (letzte 30 Tage)
M
M am 22 Nov. 2023
Kommentiert: Stephen23 am 22 Nov. 2023
If there is a structure with size 1*12, each element is 3D with size 120*12*N , How can I concatenate the elements of this structure?

Akzeptierte Antwort

Stephen23
Stephen23 am 22 Nov. 2023
  2 Kommentare
M
M am 22 Nov. 2023
Bearbeitet: M am 22 Nov. 2023
@Stephen23 Thanks, What about concatenation the elements of cell array 1*12 not structured with elements with size 120*12*N?
I tried cat but it gave me error
Dimensions of arrays being concatenated are not consistent.
Stephen23
Stephen23 am 22 Nov. 2023
"What about concatenation the elements of cell array 1*12 not structured with elements with size 120*12*N? "
Then use the cell array syntax shown in the tutorial. For example:
C = {rand(120,12,3), rand(120,12,5), rand(120,12,2), rand(120,12,1), rand(120,12,0), rand(120,12,4)};
A = cat(3,C{:});
size(A)
ans = 1×3
120 12 15
"I tried cat but it gave me error Dimensions of arrays being concatenated are not consistent."
Then the dimensions of one or more of the arrays are not what you explained in your question.
Lets try it right now:
S = struct('F',C)
A = cat(3,S.F);
size(A)
ans = 1×3
120 12 15

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by