I have 2 horizontal arrays I'm trying to add to a table
X = [1 2 3 4 5]
Y = [6 7 8 9 10]
and I'm trying to add them both to a 2x5 table such that the labels are X and Y is added as a row I.E.
1 2 3 4 5
6 7 8 9 10
No matter how I try and create the table, it ends up like
Var 1 Var 2
[1×5 double] [1×5 double]
I've tried doing some research and couldn't really find anything. Is this something that is doable?