How do I places separate columns next to each other to create a table?

10 views (last 30 days)
I have the following columns:
A =
1
2
3
4
5
6
B =
7
8
9
10
11
12
C =
13
14
15
16
17
18
But I want to create a table of these separate columns so that it looks something like this:
TABLE =
1 7 13
2 8 14
3 9 15
4 10 16
5 11 17
6 12 18
Any suggestions on how I could do this?
Many thanks in advance.

Answers (1)

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh on 11 Mar 2014
It's very easy actually! you can eaither use this code
TABLE= [A,B,C]
or you can use concatenate commands, either ways are the same! Refer to MATLAB help for commands below. And don't forget that your matrices should of the same coloumn or row for each instance!
vertcat
horzcat
Good luck!

Categories

Find more on Creating and Concatenating Matrices 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!