merging multidimensional cell array

1 次查看(过去 30 天)
AA_last=1x1x3 cell
val(:,:,1) =
[12x4 double]
val(:,:,2) =
[13x4 double]
val(:,:,3) =
[13x4 double]
AA_last_glonass=1x1x3
val(:,:,1) =
[8x4 double]
val(:,:,2) =
[7x4 double]
val(:,:,3) =
[9x4 double]
How can I combine them into 1x1x7 cell as follows;
combined=
val(:,:,1) =
[20x4 double]
val(:,:,2) =
[20x4 double]
val(:,:,3) =
[22x4 double]

采纳的回答

the cyclist
the cyclist 2017-1-18
This can be done straightforwardly with a for loop:
for nc = 1:size(AA_last,3)
combined{1,1,nc} = [AA_last{1,1,nc}; AA_last_glonass{1,1,nc}];
end

更多回答(0 个)

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by