Hi,
I am trying to merge two vectors into a single matrix. Both of them has only one line and 100 columns:
Vector A: (1x100)
B: (1x100)
However, the matrix I am trying to build is done with merging the first value from A with the second from B, separated by "," and a ";" after each pair.
So I can have something like this:
C=(a1,b1;a2,b2;a3,b3...)
Thank you very much.