Construct a permutation matrix from two vectors
Ältere Kommentare anzeigen
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.
Akzeptierte Antwort
Weitere Antworten (1)
Bruno Luong
am 23 Mär. 2023
Bearbeitet: Bruno Luong
am 23 Mär. 2023
combinations, new stock function in R2023a
a = [1 ; 2 ; 3];
b = [4 ; 5 ; 6];
combinations(a,b)
Kategorien
Mehr zu Delaunay Triangulation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!