how to get combination of elements in a matrix in pair order

2 次查看(过去 30 天)
I have a matrix A=[3 5 6 7 8]
i want the output in the form B= [ 3 5
3 6
3 7
3 8
5 3
5 6
5 7
5 8...] like this

采纳的回答

Stephan
Stephan 2019-7-11
编辑:Stephan 2019-7-11
A=[3 5 6 7 8];
b = nchoosek(A,2)
b =
3 5
3 6
3 7
3 8
5 6
5 7
5 8
6 7
6 8
7 8

更多回答(1 个)

Andrei Bobrov
Andrei Bobrov 2019-7-11
编辑:Andrei Bobrov 2019-7-11
A=[3 5 6 7 8];
[y,x] = ndgrid(A);
B = [x(:),y(:)];
B = B(diff(B,1,2) ~= 0,:);

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by