Use combvec for pairs of values
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
I have a matrix (20 x 2) .
I would like to create 4 possible combinations of each pair of values present on each row of this matrix into a new matrix with 8 columns.
Basically, I would like to use combvec but instead of using scalars, I would be using pairs of values.
Any ideas?
Tnks
0 Kommentare
Antworten (2)
DGM
am 30 Okt. 2021
If there's only two columns, what's wrong with just doing
A = randi(9,20,2)
B = A(:,[1 1 1 2 2 1 2 2])
0 Kommentare
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!