フィルターのクリア

Concatenating matrices in a structure with same size into a 3D array.

1 回表示 (過去 30 日間)
Ikmal Rosli
Ikmal Rosli 2023 年 8 月 21 日
コメント済み: Ikmal Rosli 2023 年 8 月 21 日
Hello,
I have a structure consisting of 25 matrices, all of the same sizes, 5750 x 360. I am trying to figure out how I can concatenate this array in the third dimension so that I can get an array of 5750 x 360 x 25.
x_mat.mat1=rand(100, 5);
x_mat.mat2=rand(100, 5);
x_mat.mat3=rand(100, 5);
x_mat.mat4=rand(100, 5);
structfun(@(x) cat(3, x), x_mat, UniformOutput=false)
ans = struct with fields:
mat1: [100×5 double] mat2: [100×5 double] mat3: [100×5 double] mat4: [100×5 double]
I've tried this, but it returns the same structure.
Thank you in advance. :-)

採用された回答

Bruno Luong
Bruno Luong 2023 年 8 月 21 日
x_mat.mat1=rand(100, 5);
x_mat.mat2=rand(100, 5);
x_mat.mat3=rand(100, 5);
x_mat.mat4=rand(100, 5);
c=struct2cell(x_mat);
A=cat(3,c{:});
size(A)
ans = 1×3
100 5 4

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by