표와 테이블 관리

수학노트
둘러보기로 가기 검색하러 가기

개요

latex 테이블

\begin{array}{c|ccccc} & 1 & 2 & 3 & 4 & 5 \\ \hline 1 & 11 & 12 & 13 & 14 & 15 \\ 2 & 21 & 22 & 23 & 24 & 25 \\ 3 & 31 & 32 & 33 & 34 & 35 \\ 4 & 41 & 42 & 43 & 44 & 45 \\ 5 & 51 & 52 & 53 & 54 & 55 \\ 6 & 61 & 62 & 63 & 64 & 65 \\ 7 & 71 & 72 & 73 & 74 & 75 \\ 8 & 81 & 82 & 83 & 84 & 85 \\ 9 & 91 & 92 & 93 & 94 & 95 \end{array}


\begin{array}{cc|c|c|c|c|c|} x & x & x & x & x & x & x \\ \hline x & x & x & x & x & x & x \\ \hline x & x & x & x & x & x & x \\ \hline \end{array}


\begin{array}{l|ll} & \text{deg} & \phi _n\text{(x)} \\ \hline 0 & 0 & 1 \\ 1 & 1 & -1+x \\ 2 & 1 & 1+x \\ 3 & 2 & 1+x+x^2 \\ 4 & 2 & 1+x^2 \\ 5 & 4 & 1+x+x^2+x^3+x^4 \\ 6 & 2 & 1-x+x^2 \\ 7 & 6 & 1+x+x^2+x^3+x^4+x^5+x^6 \\ 8 & 4 & 1+x^4 \\ 9 & 6 & 1+x^3+x^6 \end{array}

테이블 헤딩

A := {f[x], g[x]}
X := Table[x, {x, 0, 9}]
T := Table[A, {x, X}]
TableForm[T, TableHeadings -> {X, A}]

f[x_, y_] := 10 x + y
X := Table[x, {x, 1, 9}]
Y := Table[y, {y, 1, 5}]
Z := Prepend[X, "x\[DescendingEllipsis]y"]
A := Table[f[x, y], {x, X}, {y, Y}]
Grid[MapThread[Prepend, {Prepend[A, Y], Z}], Frame -> All]
Y // TableForm
A // TableForm
Prepend[A, Y] // TableForm

HTML 테이블 얻기

메모

관련된 항목들



매스매티카 파일 및 계산 리소스



사전 형태의 자료