How to concatenate the resulting 2D matrices from a 3D matrix, vertically? Please, I need the solution for a gereric dimension n, i.e., A(:,:,n)

1 回表示 (過去 30 日間)
%example
for a=1:n
for c=1:n
H1(c,a,a)=1;
H1(c,c,a)=-1;
end
end
  1 件のコメント
Mariana
Mariana 2017 年 11 月 23 日
With H1(:,:) result and nx(nxn) 2D matrix. This concatenate the 3D matrix horizontally.
But, what about vertically.

サインインしてコメントする。

採用された回答

Matt J
Matt J 2017 年 11 月 23 日
Hcell=num2cell(H1,[1,2]);
result=vertcat(Hcell{:});

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by