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

14 次查看(过去 30 天)
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.

回答(1 个)

Salaheddin Hosseinzadeh
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!

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by