how to combine two matrix?
1 次查看(过去 30 天)
显示 更早的评论
example1=[25 20 30 40 50 60 70 80 90];
ex_perm = reshape((perms(example1))', 1,size(example1,2),[]);
I want [example1; ex_perm] format.
Means 1*9*362881 Matrix.
0 个评论
采纳的回答
Walter Roberson
2016-2-9
That is not combining two matrices. The code you show looks like it would work. An easier way of doing that would be
ex_perm = permute(perms(example1), [3 2 1]);
2 个评论
Walter Roberson
2016-2-9
Ah, I did not notice that you wanted another copy of example1 in there. Note that the original form of example1 will already be included in the list, so only do this if you do not mind having a duplicate entry.
One way:
permute([example1; perms(example1)], [3 2 1])
Another:
ex_perm = permute(perms(example1), [3 2 1]);
result = cat(3, example1, ex_perm);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!