Combination of 2 columns

4 views (last 30 days)
Cside
Cside on 14 Feb 2020
Answered: Stephen23 on 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! :)

Accepted Answer

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

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!