표와 테이블 관리
개요
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 테이블 얻기
메모
관련된 항목들
매스매티카 파일 및 계산 리소스
- https://docs.google.com/leaf?id=0B8XXo8Tve1cxNDYwYTJjNTYtZmJjYi00YmFlLWFmMjktYTVhYzAwNTA0MTdm&sort=name&layout=list&num=50
- http://www.wolframalpha.com/input/?i=
- http://functions.wolfram.com/
- NIST Digital Library of Mathematical Functions
- Abramowitz and Stegun Handbook of mathematical functions
- The On-Line Encyclopedia of Integer Sequences
- Numbers, constants and computation
- 매스매티카 파일 목록