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

1 visualizzazione (ultimi 30 giorni)
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

Risposta accettata

Stephan
Stephan il 11 Lug 2019
Modificato: Stephan il 11 Lug 2019
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

Più risposte (1)

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

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by