How to get all combinations of PRODUCTS between two array elements?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nadatimuj
el 9 de Jun. de 2022
Comentada: Voss
el 10 de Jun. de 2022
Hi,
Let's say I have two arrays.
A =[5 6 8 9 7];
B= [3 4 5];
I need all combinations of elements of A* elements of B. for examle, 5*3, 5*4, 5*5, 6*3, 6*4,...and so on Thanks.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 9 de Jun. de 2022
A(:).*B(:).'
If you can guarantee that both are row vectors then either
A.'. * B
or
A .* B.'
The result will be a 2d array, length() of one by length() of the other.
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!