Construct a permutation matrix from two vectors
Mostrar comentarios más antiguos
Hi,
If I have two vectors:
a = [1 ; 2 ; 3];
b = [4 ; 5 ; 6];
How can I constrcut a matrix that has the shape of:

Thanks.
Respuesta aceptada
Más respuestas (1)
Bruno Luong
el 23 de Mzo. de 2023
Editada: Bruno Luong
el 23 de Mzo. de 2023
combinations, new stock function in R2023a
a = [1 ; 2 ; 3];
b = [4 ; 5 ; 6];
combinations(a,b)
Categorías
Más información sobre Delaunay Triangulation 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!