element wise concatenation of square matrices
1 次查看(过去 30 天)
显示 更早的评论
Hi, I have the following two square matrices:
A=
17 24 1
23 65 7
4 6 13
B=
18 27 35
2 5 8
4 16 11
I want to concatenate the elements of matrices A and B to form a cell C such that:
C= <17,18> <24,27> <1,35>
<23,2> <65,5> <7,8>
<4,4> <6,16> <13,11>
Please help. (I want to avoid using for loop)
0 个评论
回答(4 个)
Azzi Abdelmalek
2013-2-12
编辑:Azzi Abdelmalek
2013-2-12
n=numel(A)
out=arrayfun(@(x) [A(x) B(x)],1:n,'un',0)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!