How to display 1x20 array in table ?

조회 수: 1 (최근 30일)
Fiona Asham
Fiona Asham 2021년 4월 28일
댓글: David Fletcher 2021년 4월 28일
How do i display multiple 1x20 arrays in a table with a column for the names

답변 (1개)

David Fletcher
David Fletcher 2021년 4월 28일
Do you mean something like this?
A=1:20
B=1:20
table(A',B','VariableNames',{'A_name','Another name'})
20×2 table
A_name Another name
______ ____________
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
11 11
12 12
13 13
14 14
15 15
16 16
17 17
18 18
19 19
20 20
  댓글 수: 2
Fiona Asham
Fiona Asham 2021년 4월 28일
That but horizontally
David Fletcher
David Fletcher 2021년 4월 28일
Essentially it would be the same thing, I just didn't want to invent/type out 20 column headings

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by