All combinations of matrix elements?
Mostrar comentarios más antiguos
Hello,
I'd like to find all combinations of 2 elements in a matrix.
For example, a = [1:4; 5:8; 9:12]', the result should be [1*1 1*2 1*3 1*4 1*5 ... 1*12 2*2 2*3 ... 2*12 3*3 ... 12*11 12*12]';
Thanks for your help!
1 comentario
Stephen23
el 26 de Sept. de 2016
Respuesta aceptada
Más respuestas (1)
Andrei Bobrov
el 23 de Sept. de 2016
Editada: Andrei Bobrov
el 23 de Sept. de 2016
b = a(:)*a(:).';
out = b(tril(true(size(b))));
1 comentario
Xiaohan Du
el 23 de Sept. de 2016
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!