MATLAB: From 2 vectors of n elements To n points

vectors . points . command

Hi, if I have two vectors:
A=[
a1
a2
a3
a4
a5
a6
a7
]
and
B=[
b1
b2
b3
b4
b5
b6
b7
]
What's the command to create 7 points
p1=[a1, b1], p2=[a2,b2], … p7=[a7,b7] ?
Thanks

Best Answer

C=num2cell([A,B],2);
[p1,p2,p3,p4,p5,p6,p7]=deal(C{:});