Use combvec for pairs of values
Ä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
Antworten (2)
M.MUSBA Elhadid
am 30 Okt. 2021
0 Stimmen
a = repmat(a,2,4);
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])
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!