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)

2 次查看(过去 30 天)
%example
for a=1:n
for c=1:n
H1(c,a,a)=1;
H1(c,c,a)=-1;
end
end

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by