Combination of 2 columns

1 Ansicht (letzte 30 Tage)
Cside
Cside am 14 Feb. 2020
Beantwortet: Stephen23 am 14 Feb. 2020
Hi, I have 2 vectors, A = 10x1, B = 6x1.
How do I create a 60x2 matrix where every element of A is matched to the element of B? Each row should reflect (A,B). Thanks! :)

Akzeptierte Antwort

Stephen23
Stephen23 am 14 Feb. 2020
[Am,Bm] = ndgrid(A,B);
M = [Am(:),Bm(:)]

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and 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