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

조회 수: 14 (최근 30일)
Surush
Surush 2014년 3월 11일
답변: Salaheddin Hosseinzadeh 2014년 3월 11일
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
Salaheddin Hosseinzadeh 2014년 3월 11일
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에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by