Filter löschen
Filter löschen

Construct a permutation matrix from two vectors

22 Ansichten (letzte 30 Tage)
Lama Hamadeh
Lama Hamadeh am 23 Mär. 2023
Bearbeitet: Bruno Luong am 23 Mär. 2023
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

Matt J
Matt J am 23 Mär. 2023
Bearbeitet: Matt J am 23 Mär. 2023
a = [1 ; 2 ; 3];
b = [4 ; 5 ; 6];
[B,A]=ndgrid(b,a);
c=[A(:),B(:)]
c = 9×2
1 4 1 5 1 6 2 4 2 5 2 6 3 4 3 5 3 6

Weitere Antworten (1)

Bruno Luong
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)
ans = 9×2 table
a b _ _ 1 4 1 5 1 6 2 4 2 5 2 6 3 4 3 5 3 6

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by