How to concatenate the elements of the structure?
11 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Stephen23
2023-11-22
Where S is your structure and F is the relevant field:
cat(3,S.F)
2 个评论
Stephen23
2023-11-22
"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)
"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)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!