Reputation: 465
I have 3 Matlab 1 coloumn arrays and I want to turn them into one 3 column array. How can I do this?
For example.
A1 = A2= A3= | 1 | | 4 | | 7 | | 2 | | 5 | | 8 | | 3 | | 6 | | 9 |
I want the output to be:
Output = | 1 4 7 | | 2 5 8 | | 3 6 9 |
Thank you!
Found the answer, and it was very simple:
Output = [A1 A2 A3]
Thanks anyway!
Upvotes: 2
Views: 2609